Newer
Older
# Greek translations for Mercurial
# Ελληνική μετάφραση των μηνυμάτων του Mercurial
# Copyright (C) 2009 Olivia Mackall και άλλοι
msgid ""
msgstr ""
"Project-Id-Version: Mercurial\n"
"Report-Msgid-Bugs-To: <mercurial-devel@mercurial-scm.org>\n"
"POT-Creation-Date: 2009-10-25 12:38+0100\n"
"PO-Revision-Date: 2009-12-02 03:23+0200\n"
"Last-Translator: <keramida@ceid.upatras.gr>\n"
"Language-Team: Greek\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: pygettext.py 1.5\n"
#, python-format
msgid " (default: %s)"
msgstr " (προκαθορισμένο: %s)"
msgid "Options"
msgstr "Επιλογές"
msgid "Commands"
msgstr "Εντολές"
msgid " options:"
msgstr " επιλογές:"
#, python-format
msgid " aliases: %s"
msgstr " ψευδώνυμα: %s"
msgid ""
"Mercurial reads configuration data from several files, if they exist.\n"
"Below we list the most specific file first."
msgstr ""
msgid "On Windows, these configuration files are read:"
msgstr ""
msgid ""
"- ``<repo>\\.hg\\hgrc``\n"
"- ``%USERPROFILE%\\.hgrc``\n"
"- ``%USERPROFILE%\\Mercurial.ini``\n"
"- ``%HOME%\\.hgrc``\n"
"- ``%HOME%\\Mercurial.ini``\n"
"- ``C:\\Mercurial\\Mercurial.ini``\n"
"- ``HKEY_LOCAL_MACHINE\\SOFTWARE\\Mercurial``\n"
"- ``<install-dir>\\Mercurial.ini``"
msgstr ""
msgid "On Unix, these files are read:"
msgstr ""
msgid ""
"- ``<repo>/.hg/hgrc``\n"
"- ``$HOME/.hgrc``\n"
"- ``/etc/mercurial/hgrc``\n"
"- ``/etc/mercurial/hgrc.d/*.rc``\n"
"- ``<install-root>/etc/mercurial/hgrc``\n"
"- ``<install-root>/etc/mercurial/hgrc.d/*.rc``"
msgstr ""
msgid ""
"The configuration files for Mercurial use a simple ini-file format. A\n"
"configuration file consists of sections, led by a ``[section]`` header\n"
"and followed by ``name = value`` entries::"
msgstr ""
msgid ""
" [ui]\n"
" username = Firstname Lastname <firstname.lastname@example.net>\n"
" verbose = True"
msgstr ""
msgid ""
"This above entries will be referred to as ``ui.username`` and\n"
"``ui.verbose``, respectively. Please see the hgrc man page for a full\n"
"description of the possible configuration values:"
msgstr ""
msgid ""
"- on Unix-like systems: ``man hgrc``\n"
"- online: http://www.selenic.com/mercurial/hgrc.5.html\n"
msgstr ""
msgid "Some commands allow the user to specify a date, e.g.:"
msgstr ""
msgid ""
"- backout, commit, import, tag: Specify the commit date.\n"
"- log, revert, update: Select revision(s) by date."
msgstr ""
msgid "Many date formats are valid. Here are some examples:"
msgstr ""
msgid ""
"- ``Wed Dec 6 13:18:29 2006`` (local timezone assumed)\n"
"- ``Dec 6 13:18 -0600`` (year assumed, time offset provided)\n"
"- ``Dec 6 13:18 UTC`` (UTC and GMT are aliases for +0000)\n"
"- ``Dec 6`` (midnight)\n"
"- ``13:18`` (today assumed)\n"
"- ``3:39`` (3:39AM assumed)\n"
"- ``3:39pm`` (15:39)\n"
"- ``2006-12-06 13:18:29`` (ISO 8601 format)\n"
"- ``2006-12-6 13:18``\n"
"- ``2006-12-6``\n"
"- ``12-6``\n"
"- ``12/6``\n"
"- ``12/6/6`` (Dec 6 2006)"
msgstr ""
msgid "Lastly, there is Mercurial's internal format:"
msgstr ""
msgid "- ``1165432709 0`` (Wed Dec 6 13:18:29 2006 UTC)"
msgstr ""
msgid ""
"This is the internal representation format for dates. unixtime is the\n"
"number of seconds since the epoch (1970-01-01 00:00 UTC). offset is\n"
"the offset of the local timezone, in seconds west of UTC (negative if\n"
"the timezone is east of UTC)."
msgstr ""
msgid "The log command also accepts date ranges:"
msgstr ""
msgid ""
"- ``<{datetime}`` - at or before a given date/time\n"
"- ``>{datetime}`` - on or after a given date/time\n"
"- ``{datetime} to {datetime}`` - a date range, inclusive\n"
"- ``-{days}`` - within a given number of days of today\n"
msgstr ""
msgid ""
"Mercurial's default format for showing changes between two versions of\n"
"a file is compatible with the unified format of GNU diff, which can be\n"
"used by GNU patch and many other standard tools."
msgstr ""
msgid ""
"While this standard format is often enough, it does not encode the\n"
"following information:"
msgstr ""
msgid ""
"- executable status and other permission bits\n"
"- copy or rename information\n"
"- changes in binary files\n"
"- creation or deletion of empty files"
msgstr ""
msgid ""
"Mercurial also supports the extended diff format from the git VCS\n"
"which addresses these limitations. The git diff format is not produced\n"
"by default because a few widespread tools still do not understand this\n"
"format."
msgstr ""
msgid ""
"This means that when generating diffs from a Mercurial repository\n"
"(e.g. with \"hg export\"), you should be careful about things like file\n"
"copies and renames or other things mentioned above, because when\n"
"applying a standard diff to a different repository, this extra\n"
"information is lost. Mercurial's internal operations (like push and\n"
"pull) are not affected by this, because they use an internal binary\n"
"format for communicating changes."
msgstr ""
msgid ""
"To make Mercurial produce the git extended diff format, use the --git\n"
"option available for many commands, or set 'git = True' in the [diff]\n"
"section of your hgrc. You do not need to set this option when\n"
"importing diffs in this format or using them in the mq extension.\n"
msgstr ""
msgid ""
"HG\n"
" Path to the 'hg' executable, automatically passed when running\n"
" hooks, extensions or external tools. If unset or empty, this is\n"
" the hg executable's name if it's frozen, or an executable named\n"
" 'hg' (with %PATHEXT% [defaulting to COM/EXE/BAT/CMD] extensions on\n"
" Windows) is searched."
msgstr ""
msgid ""
" This is the name of the editor to run when committing. See EDITOR."
msgstr ""
msgid " (deprecated, use .hgrc)"
msgstr ""
msgid ""
"HGENCODING\n"
" This overrides the default locale setting detected by Mercurial.\n"
" This setting is used to convert data including usernames,\n"
" changeset descriptions, tag names, and branches. This setting can\n"
" be overridden with the --encoding command-line option."
msgstr ""
msgid ""
"HGENCODINGMODE\n"
" This sets Mercurial's behavior for handling unknown characters\n"
" while transcoding user input. The default is \"strict\", which\n"
" causes Mercurial to abort if it can't map a character. Other\n"
" settings include \"replace\", which replaces unknown characters, and\n"
" \"ignore\", which drops them. This setting can be overridden with\n"
" the --encodingmode command-line option."
msgstr ""
msgid ""
"HGMERGE\n"
" An executable to use for resolving merge conflicts. The program\n"
" will be executed with three arguments: local file, remote file,\n"
" ancestor file."
msgstr ""
msgid ""
"HGRCPATH\n"
" A list of files or directories to search for hgrc files. Item\n"
" separator is \":\" on Unix, \";\" on Windows. If HGRCPATH is not set,\n"
" platform default search path is used. If empty, only the .hg/hgrc\n"
" from the current repository is read."
msgstr ""
msgid " For each element in HGRCPATH:"
msgstr ""
msgid ""
" - if it's a directory, all files ending with .rc are added\n"
" - otherwise, the file itself will be added"
msgstr ""
msgid ""
"HGUSER\n"
" This is the string used as the author of a commit. If not set,\n"
" available values will be considered in this order:"
msgstr ""
msgid ""
" - HGUSER (deprecated)\n"
" - hgrc files from the HGRCPATH\n"
" - EMAIL\n"
" - interactive prompt\n"
" - LOGNAME (with ``@hostname`` appended)"
msgstr ""
msgid ""
" May be used as the author of a commit; see HGUSER."
msgstr ""
msgid ""
" May be used as the author of a commit; see HGUSER."
msgstr ""
msgid ""
" This is the name of the editor to use when committing. See EDITOR."
msgstr ""
msgid ""
"EDITOR\n"
" Sometimes Mercurial needs to open a text file in an editor for a\n"
" user to modify, for example when writing commit messages. The\n"
" editor it uses is determined by looking at the environment\n"
" variables HGEDITOR, VISUAL and EDITOR, in that order. The first\n"
" non-empty one is chosen. If all of them are empty, the editor\n"
" defaults to 'vi'."
msgstr ""
msgid ""
"PYTHONPATH\n"
" This is used by Python to find imported modules and may need to be\n"
" set appropriately if this Mercurial is not installed system-wide.\n"
msgstr ""
msgid ""
"Mercurial has the ability to add new features through the use of\n"
"extensions. Extensions may add new commands, add options to\n"
"existing commands, change the default behavior of commands, or\n"
"implement hooks."
msgstr ""
msgid ""
"Extensions are not loaded by default for a variety of reasons:\n"
"they can increase startup overhead; they may be meant for advanced\n"
"usage only; they may provide potentially dangerous abilities (such\n"
"as letting you destroy or modify history); they might not be ready\n"
"for prime time; or they may alter some usual behaviors of stock\n"
"Mercurial. It is thus up to the user to activate extensions as\n"
"needed."
msgstr ""
msgid ""
"To enable the \"foo\" extension, either shipped with Mercurial or in\n"
"the Python search path, create an entry for it in your hgrc, like\n"
"this::"
msgstr ""
msgid ""
" foo ="
msgstr ""
msgid "You may also specify the full path to an extension::"
msgstr ""
msgid ""
" myfeature = ~/.hgext/myfeature.py"
msgstr ""
msgid ""
"To explicitly disable an extension enabled in an hgrc of broader\n"
"scope, prepend its path with !::"
msgstr ""
msgid ""
" [extensions]\n"
" # disabling extension bar residing in /path/to/extension/bar.py\n"
" bar = !/path/to/extension/bar.py\n"
" # ditto, but no path was supplied for extension baz\n"
msgstr ""
msgid ""
"When Mercurial accepts more than one revision, they may be specified\n"
"individually, or provided as a topologically continuous range,\n"
"separated by the \":\" character."
msgstr ""
msgid ""
"The syntax of range notation is [BEGIN]:[END], where BEGIN and END are\n"
"revision identifiers. Both BEGIN and END are optional. If BEGIN is not\n"
"specified, it defaults to revision number 0. If END is not specified,\n"
"it defaults to the tip. The range \":\" thus means \"all revisions\"."
msgstr ""
msgid "If BEGIN is greater than END, revisions are treated in reverse order."
msgstr ""
msgid ""
"A range acts as a closed interval. This means that a range of 3:5\n"
"gives 3, 4 and 5. Similarly, a range of 9:6 gives 9, 8, 7, and 6.\n"
msgstr ""
msgid ""
"Mercurial accepts several notations for identifying one or more files\n"
"at a time."
msgstr ""
msgid ""
"By default, Mercurial treats filenames as shell-style extended glob\n"
"patterns."
msgstr ""
msgid "Alternate pattern notations must be specified explicitly."
msgstr ""
msgid ""
"To use a plain path name without any pattern matching, start it with\n"
"``path:``. These path names must completely match starting at the\n"
"current repository root."
msgstr ""
msgid ""
"To use an extended glob, start a name with ``glob:``. Globs are rooted\n"
"at the current directory; a glob such as ``*.c`` will only match files\n"
"in the current directory ending with ``.c``."
msgstr ""
msgid ""
"The supported glob syntax extensions are ``**`` to match any string\n"
"across path separators and ``{a,b}`` to mean \"a or b\"."
msgstr ""
msgid ""
"To use a Perl/Python regular expression, start a name with ``re:``.\n"
"Regexp pattern matching is anchored at the root of the repository."
msgstr ""
msgid "Plain examples::"
msgstr ""
msgid ""
" path:foo/bar a name bar in a directory named foo in the root\n"
" of the repository\n"
" path:path:name a file or directory named \"path:name\""
msgstr ""
msgid "Glob examples::"
msgstr ""
msgid ""
" glob:*.c any name ending in \".c\" in the current directory\n"
" *.c any name ending in \".c\" in the current directory\n"
" **.c any name ending in \".c\" in any subdirectory of the\n"
" current directory including itself.\n"
" foo/*.c any name ending in \".c\" in the directory foo\n"
" foo/**.c any name ending in \".c\" in any subdirectory of foo\n"
" including itself."
msgstr ""
msgid "Regexp examples::"
msgstr ""
msgid " re:.*\\.c$ any name ending in \".c\", anywhere in the repository\n"
msgstr ""
msgid "Mercurial supports several ways to specify individual revisions."
msgstr ""
msgid ""
"A plain integer is treated as a revision number. Negative integers are\n"
"treated as sequential offsets from the tip, with -1 denoting the tip,\n"
"-2 denoting the revision prior to the tip, and so forth."
msgstr ""
msgid ""
"A 40-digit hexadecimal string is treated as a unique revision\n"
"identifier."
msgstr ""
msgid ""
"A hexadecimal string less than 40 characters long is treated as a\n"
"unique revision identifier and is referred to as a short-form\n"
"identifier. A short-form identifier is only valid if it is the prefix\n"
"of exactly one full-length identifier."
msgstr ""
msgid ""
"Any other string is treated as a tag or branch name. A tag name is a\n"
"symbolic name associated with a revision identifier. A branch name\n"
"denotes the tipmost revision of that branch. Tag and branch names must\n"
"not contain the \":\" character."
msgstr ""
msgid ""
"The reserved name \"tip\" is a special tag that always identifies the\n"
"most recent revision."
msgstr ""
msgid ""
"The reserved name \"null\" indicates the null revision. This is the\n"
"revision of an empty repository, and the parent of revision 0."
msgstr ""
msgid ""
"The reserved name \".\" indicates the working directory parent. If no\n"
"working directory is checked out, it is equivalent to null. If an\n"
"uncommitted merge is in progress, \".\" is the revision of the first\n"
"parent.\n"
msgstr ""
msgid ""
"Mercurial allows you to customize output of commands through\n"
"templates. You can either pass in a template from the command\n"
"line, via the --template option, or select an existing\n"
"template-style (--style)."
msgstr ""
msgid ""
"You can customize output for any \"log-like\" command: log,\n"
"outgoing, incoming, tip, parents, heads and glog."
msgstr ""
msgid ""
"Three styles are packaged with Mercurial: default (the style used\n"
"when no explicit preference is passed), compact and changelog.\n"
"Usage::"
msgstr ""
msgid " $ hg log -r1 --style changelog"
msgstr ""
msgid ""
"A template is a piece of text, with markup to invoke variable\n"
"expansion::"
msgstr ""
msgid ""
" $ hg log -r1 --template \"{node}\\n\"\n"
" b56ce7b07c52de7d5fd79fb89701ea538af65746"
msgstr ""
msgid ""
"Strings in curly braces are called keywords. The availability of\n"
"keywords depends on the exact context of the templater. These\n"
"keywords are usually available for templating a log-like command:"
msgstr ""
msgid ""
":author: String. The unmodified author of the changeset.\n"
":branches: String. The name of the branch on which the changeset\n"
" was committed. Will be empty if the branch name was\n"
" default.\n"
":date: Date information. The date when the changeset was\n"
" committed.\n"
":desc: String. The text of the changeset description.\n"
":diffstat: String. Statistics of changes with the following\n"
" format: \"modified files: +added/-removed lines\"\n"
":files: List of strings. All files modified, added, or removed\n"
" by this changeset.\n"
":file_adds: List of strings. Files added by this changeset.\n"
":file_mods: List of strings. Files modified by this changeset.\n"
":file_dels: List of strings. Files removed by this changeset.\n"
":node: String. The changeset identification hash, as a\n"
" 40-character hexadecimal string.\n"
":parents: List of strings. The parents of the changeset.\n"
":rev: Integer. The repository-local changeset revision\n"
" number.\n"
":tags: List of strings. Any tags associated with the\n"
" changeset.\n"
":latesttag: String. Most recent global tag in the ancestors of this\n"
" changeset.\n"
":latesttagdistance: Integer. Longest path to the latest tag."
msgstr ""
msgid ""
"The \"date\" keyword does not produce human-readable output. If you\n"
"want to use a date in your output, you can use a filter to process\n"
"it. Filters are functions which return a string based on the input\n"
"variable. You can also use a chain of filters to get the desired\n"
"output::"
msgstr ""
msgid ""
" $ hg tip --template \"{date|isodate}\\n\"\n"
" 2008-08-21 18:22 +0000"
msgstr ""
msgid "List of filters:"
msgstr ""
msgid ""
":addbreaks: Any text. Add an XHTML \"<br />\" tag before the end of\n"
" every line except the last.\n"
":age: Date. Returns a human-readable date/time difference\n"
" between the given date/time and the current\n"
" date/time.\n"
":basename: Any text. Treats the text as a path, and returns the\n"
" last component of the path after splitting by the\n"
" path separator (ignoring trailing separators). For\n"
" example, \"foo/bar/baz\" becomes \"baz\" and \"foo/bar//\"\n"
" becomes \"bar\".\n"
":stripdir: Treat the text as path and strip a directory level,\n"
" if possible. For example, \"foo\" and \"foo/bar\" becomes\n"
" \"foo\".\n"
":date: Date. Returns a date in a Unix date format, including\n"
" the timezone: \"Mon Sep 04 15:13:13 2006 0700\".\n"
":domain: Any text. Finds the first string that looks like an\n"
" email address, and extracts just the domain\n"
" component. Example: ``User <user@example.com>`` becomes\n"
" ``example.com``.\n"
":email: Any text. Extracts the first string that looks like\n"
" an email address. Example: ``User <user@example.com>``\n"
" becomes ``user@example.com``.\n"
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
":escape: Any text. Replaces the special XML/XHTML characters\n"
" \"&\", \"<\" and \">\" with XML entities.\n"
":fill68: Any text. Wraps the text to fit in 68 columns.\n"
":fill76: Any text. Wraps the text to fit in 76 columns.\n"
":firstline: Any text. Returns the first line of text.\n"
":nonempty: Any text. Returns '(none)' if the string is empty.\n"
":hgdate: Date. Returns the date as a pair of numbers:\n"
" \"1157407993 25200\" (Unix timestamp, timezone offset).\n"
":isodate: Date. Returns the date in ISO 8601 format:\n"
" \"2009-08-18 13:00 +0200\".\n"
":isodatesec: Date. Returns the date in ISO 8601 format, including\n"
" seconds: \"2009-08-18 13:00:13 +0200\". See also the\n"
" rfc3339date filter.\n"
":localdate: Date. Converts a date to local date.\n"
":obfuscate: Any text. Returns the input text rendered as a\n"
" sequence of XML entities.\n"
":person: Any text. Returns the text before an email address.\n"
":rfc822date: Date. Returns a date using the same format used in\n"
" email headers: \"Tue, 18 Aug 2009 13:00:13 +0200\".\n"
":rfc3339date: Date. Returns a date using the Internet date format\n"
" specified in RFC 3339: \"2009-08-18T13:00:13+02:00\".\n"
":short: Changeset hash. Returns the short form of a changeset\n"
" hash, i.e. a 12-byte hexadecimal string.\n"
":shortdate: Date. Returns a date like \"2006-09-18\".\n"
":strip: Any text. Strips all leading and trailing whitespace.\n"
":tabindent: Any text. Returns the text, with every line except\n"
" the first starting with a tab character.\n"
":urlescape: Any text. Escapes all \"special\" characters. For\n"
" example, \"foo bar\" becomes \"foo%20bar\".\n"
":user: Any text. Returns the user portion of an email\n"
" address.\n"
msgstr ""
msgid "Valid URLs are of the form::"
msgstr ""
msgid ""
" local/filesystem/path[#revision]\n"
" file://local/filesystem/path[#revision]\n"
" http://[user[:pass]@]host[:port]/[path][#revision]\n"
" https://[user[:pass]@]host[:port]/[path][#revision]\n"
" ssh://[user[:pass]@]host[:port]/[path][#revision]"
msgstr ""
msgid ""
"Paths in the local filesystem can either point to Mercurial\n"
"repositories or to bundle files (as created by 'hg bundle' or 'hg\n"
"incoming --bundle')."
msgstr ""
msgid ""
"An optional identifier after # indicates a particular branch, tag, or\n"
"changeset to use from the remote repository. See also 'hg help\n"
"revisions'."
msgstr ""
msgid ""
"Some features, such as pushing to http:// and https:// URLs are only\n"
"possible if the feature is explicitly enabled on the remote Mercurial\n"
"server."
msgstr ""
msgid "Some notes about using SSH with Mercurial:"
msgstr ""
msgid ""
"- SSH requires an accessible shell account on the destination machine\n"
" and a copy of hg in the remote path or specified with as remotecmd.\n"
"- path is relative to the remote user's home directory by default. Use\n"
" an extra slash at the start of a path to specify an absolute path::"
msgstr ""
msgid " ssh://example.com//tmp/repository"
msgstr ""
msgid ""
"- Mercurial doesn't use its own compression via SSH; the right thing\n"
" to do is to configure it in your ~/.ssh/config, e.g.::"
msgstr ""
msgid ""
" Host *.mylocalnetwork.example.com\n"
" Compression no\n"
" Host *\n"
" Compression yes"
msgstr ""
msgid ""
" Alternatively specify \"ssh -C\" as your ssh command in your hgrc or\n"
" with the --ssh command line option."
msgstr ""
msgid ""
"These URLs can all be stored in your hgrc with path aliases under the\n"
"[paths] section like so::"
msgstr ""
msgid ""
" [paths]\n"
" alias1 = URL1\n"
" alias2 = URL2\n"
" ..."
msgstr ""
msgid ""
"You can then use the alias for any command that uses a URL (for\n"
"example 'hg pull alias1' will be treated as 'hg pull URL1')."
msgstr ""
msgid ""
"Two path aliases are special because they are used as defaults when\n"
"you do not provide the URL to a command:"
msgstr ""
msgid ""
"default:\n"
" When you create a repository with hg clone, the clone command saves\n"
" the location of the source repository as the new repository's\n"
" 'default' path. This is then used when you omit path from push- and\n"
" pull-like commands (including incoming and outgoing)."
msgstr ""
msgid ""
"default-push:\n"
" The push command will look for a path named 'default-push', and\n"
" prefer it over 'default' if both are defined.\n"
msgstr ""
msgid "hooks for controlling repository access"
msgstr "hooks για έλεγχο της πρόσβασης σε ένα αποθετήριο"
msgid ""
"This hook makes it possible to allow or deny write access to portions\n"
"of a repository when receiving incoming changesets."
msgstr ""
"Τα hooks της επέκτασης acl σας δίνουν τη δυνατότητα να επιτρέψετε ή να\n"
"απαγορεύσετε την πρόσβαση για αλλαγές σε μέρη ενός αποθετηρίου κατά τη\n"
"διάρκεια της λήψης εισερχόμενων αλλαγών."
msgid ""
"The authorization is matched based on the local user name on the\n"
"system where the hook runs, and not the committer of the original\n"
"changeset (since the latter is merely informative)."
msgstr ""
"Η πρόσβαση ελέγχεται με βάση το τοπικό όνομα χρήστη στο σύστημα το οποίο\n"
"εκτελεί τον κώδικα της επέκτασης κι όχι με βάση το όνομα του συγγραφέα\n"
"μιας αλλαγής (αφού το δεύτερο υπάρχει μόνο για πληροφοριακούς σκοπούς)."
msgid ""
"The acl hook is best used along with a restricted shell like hgsh,\n"
"preventing authenticating users from doing anything other than\n"
"pushing or pulling. The hook is not safe to use if users have\n"
"interactive shell access, as they can then disable the hook.\n"
"Nor is it safe if remote users share an account, because then there\n"
"is no way to distinguish them."
msgstr ""
"Η επέκταση acl είναι πιο χρήσιμη όταν συνδυάζεται με ένα περιορισμένο\n"
"φλοιό όπως το hgsh, αφού έτσι οι απομακρυσμένοι χρήστες έχουν πρόσβαση\n"
"μόνο για λειτουργίες pull ή push. Η επέκταση δε μπορεί να σας\n"
"εξασφαλίσει ότι δε θα την απενεργοποιήσουν οι τοπικοί χρήστες όταν\n"
"έχουν απευθείας πρόσβαση να εκτελέσουν οποιαδήποτε εντολή στο\n"
"εξυπηρετητή του αποθετηρίου. Δεν είναι ασφαλής, επίσης, όταν πολλοί\n"
"απομακρυσμένοι χρήστες μοιράζονται τον ίδιο τοπικό λογαριασμό, αφού δεν\n"
"υπάρχει τρόπος να ξεχωρίσει ο ένας χρήστης από τον άλλο."
msgid "To use this hook, configure the acl extension in your hgrc like this::"
msgstr ""
"Για να χρησιμοποιήσετε το hook της επέκτασης ενεργοποιήστε την στο\n"
"αρχείο hgrc ως εξής::"
msgid ""
" [extensions]\n"
" acl ="
msgstr ""
" acl ="
msgid ""
" [hooks]\n"
" pretxnchangegroup.acl = python:hgext.acl.hook"
msgstr ""
" pretxnchangegroup.acl = python:hgext.acl.hook"
msgid ""
" [acl]\n"
" # Check whether the source of incoming changes is in this list\n"
" # (\"serve\" == ssh or http, \"push\", \"pull\", \"bundle\")\n"
" sources = serve"
msgstr ""
" [acl]\n"
" # Ελέγξτε αν η πηγή των εισερχόμενων αλλαγών είναι κάποια από τις\n"
" # (\\\"serve\\\" == ssh ή http, \\\"push\\\", \\\"pull\\\", \\\"bundle\\\")\n"
" sources = serve"
msgid ""
"The allow and deny sections take a subtree pattern as key (with a glob\n"
"syntax by default), and a comma separated list of users as the\n"
"corresponding value. The deny list is checked before the allow list\n"
"is. ::"
msgstr ""
"Τα τμήματα του αρχείου ρυθμίσεων τα οποία επιτρέπουν ή απαγορεύουν την\n"
"πρόσβαση μπορούν να αναφέρονται σε υποκαταλόγους του αποθετηρίου (με\n"
"σύνταξη glob για τα ονόματα αρχείων ή υποκαταλόγων). Σε κάθε πρότυπο\n"
"ονόματος μπορείτε να ορίσετε ένα ή περισσότερους χρήστες χωρίζοντας τα\n"
"ονόματά τους με κόμμα. Η λίστα προτύπων που απαγορεύει την πρόσβαση\n"
"ελέγχεται πρώτη. ::"
msgid ""
" [acl.allow]\n"
" # If acl.allow is not present, all users are allowed by default.\n"
" # An empty acl.allow section means no users allowed.\n"
" docs/** = doc_writer\n"
" .hgtags = release_engineer"
msgstr ""
" [acl.allow]\n"
" # Όταν δεν υπάρχει το τμήμα acl.allow επιτρέπεται η πρόσβαση σε\n"
" # όλους τους χρήστες. Όταν το τμήμα acl.allow είναι κενό δεν\n"
" # επιτρέπεται η πρόσβαση σε κανέναν χρήστη.\n"
" docs/** = doc_writer\n"
" .hgtags = release_engineer"
msgid ""
" [acl.deny]\n"
" # If acl.deny is not present, no users are refused by default.\n"
" # An empty acl.deny section means all users allowed.\n"
" glob pattern = user4, user5\n"
" ** = user6\n"
msgstr ""
" [acl.deny]\n"
" # Όταν δεν υπάρχει το τμήμα acl.deny επιτρέπεται η πρόσβαση σε\n"
" # όλους τους χρήστες. Όταν είναι κενό επίσης επιτρέπεται η\n"
" # πρόσβαση σε όλους.\n"
" glob pattern = user4, user5\n"
" ** = user6\n"
#, python-format
msgid "config error - hook type \"%s\" cannot stop incoming changesets"
msgstr "πρόβλημα ρυθμίσεων - το hook \"%s\" δε μπορεί να εμποδίσει εισερχόμενες αλλαγές"
#, python-format
msgid "acl: access denied for changeset %s"
msgstr "acl: η πρόσβαση για την αλλαγή %s δεν επιτρέπεται"
msgid "track a line of development with movable markers"
msgstr "παρακολούθηση μιας γραμμής ανάπτυξης με κινητές ετικέτες"
msgid ""
"Bookmarks are local movable markers to changesets. Every bookmark\n"
"points to a changeset identified by its hash. If you commit a\n"
"changeset that is based on a changeset that has a bookmark on it, the\n"
"bookmark shifts to the new changeset."
msgstr ""
"Τα bookmarks είναι κινητές ετικέτες για αλλαγές. Κάθε ετικέτα δείχνει\n"
"σε μια αλλαγή, με βάση το hash της αλλαγής. Αν δημιουργήσετε μια νέα\n"
"αλλαγή με βάση μια αλλαγή στην οποία δείχνει μια ετικέτα, η ετικέτα\n"
"μετακινείται στην καινούρια αλλαγή."
msgid ""
"It is possible to use bookmark names in every revision lookup (e.g. hg\n"
"merge, hg update)."
msgstr ""
"Οι ετικέτες μπορούν να χρησιμοποιηθούν οπουδήποτε έχει νόημα το\n"
"αναγνωριστικό μιας έκδοσης (π.χ. ως ορίσματα των hg merge ή hg update)."
msgid ""
"By default, when several bookmarks point to the same changeset, they\n"
"will all move forward together. It is possible to obtain a more\n"
"git-like experience by adding the following configuration option to\n"
"your .hgrc::"
msgstr ""
"Η προκαθορισμένη συμπεριφορά της επέκτασης είναι να μετακινεί όλες τις\n"
"ετικέτες μιας γονικής αλλαγής. Αυτή η συμπεριφορά μπορεί να αλλάξει,\n"
"για να μοιάζει περισσότερο με το git, προσθέτοντας την παρακάτω επιλογή\n"
"στο αρχείο .hgrc::"
msgid ""
" track.current = True"
msgstr ""
" [bookmarks]\n"
" track.current = True"
msgid ""
"This will cause Mercurial to track the bookmark that you are currently\n"
"using, and only update it. This is similar to git's approach to\n"
"branching.\n"
msgstr ""
"Με αυτή την επιλογή το Mercurial θα ελέγχει αν έχετε ενεργοποιήσει\n"
"κάποια ετικέτα και θα μετακινεί μόνο αυτή την ετικέτα. Αυτή η\n"
"συμπεριφορά μοιάζει με τον τρόπο που λειτουργούν οι κλάδοι ανάπτυξης στο\n"
"git.\n"
msgid ""
" Bookmarks are pointers to certain commits that move when\n"
" committing. Bookmarks are local. They can be renamed, copied and\n"
" deleted. It is possible to use bookmark names in 'hg merge' and\n"
" 'hg update' to merge and update respectively to a given bookmark."
msgstr ""
" Οι ετικέτες είναι δείκτες προς συγκεκριμένες αλλαγές, οι οποίοι\n"
" μετακινούνται όταν κάνετε commit. Οι ετικέτες αποθηκεύονται μόνο\n"
" τοπικά. Μπορούν να μετονομαστούν, να αντιγραφούν, και να σβηστούν.\n"
" Η χρήση τους επιτρέπεται τόσο με την εντολή 'hg merge όσο και με την\n"
" 'hg update', για συγχώνευση ή ενημέρωση, αντίστοιχα, του χώρου\n"
" εργασίας με την έκδοση μιας ετικέτας."
msgid ""
" You can use 'hg bookmark NAME' to set a bookmark on the working\n"
" directory's parent revision with the given name. If you specify\n"
" a revision using -r REV (where REV may be an existing bookmark),\n"
" the bookmark is assigned to that revision.\n"
" "
msgstr ""
" Μπορείτε να δώσετε 'hg bookmark ΟΝΟΜΑ' για να ορίσετε μια ετικέτα η\n"
" οποία δείχνει στη γονική αλλαγή του χώρου εργασίας. Με την επιλογή\n"
" '-r REV' (όπου REV μπορεί να είναι και μια υπάρχουσα ετικέτα)\n"
" μπορείτε να ορίσετε μια νέα ετικέτα για οποιαδήποτε έκδοση.\n"
" "
msgid "a bookmark of this name does not exist"
msgstr "δεν υπάρχει σελιδοδείκτης με αυτό το όνομα"
msgid "a bookmark of the same name already exists"
msgstr "υπάρχει ήδη σελιδοδείκτης με αυτό το όνομα"
msgid "new bookmark name required"
msgstr "απαιτείται ένα όνομα νέου σελιδοδείκτη"
msgid "bookmark name required"
msgstr "απαιτείται όνομα σελιδοδείκτη"
msgid "bookmark name cannot contain newlines"
msgstr "το όνομα ενός σελιδοδείκτη δεν επιτρέπεται να περιέχει χαρακτήρες αλλαγής γραμμής"
msgid "a bookmark cannot have the name of an existing branch"
msgstr "οι σελιδοδείκτες δεν επιτρέπεται να έχουν το όνομα ενός υπάρχοντος κλάδου"
msgid "force"
msgid "revision"
msgstr "αλλαγή"
msgid "delete a given bookmark"
msgstr "διαγραφή ενός σελιδοδείκτη"
msgid "rename a given bookmark"
msgstr "μετονομασία ενός σελιδοδείκτη"
msgid "hg bookmarks [-f] [-d] [-m NAME] [-r REV] [NAME]"
msgstr "hg bookmarks [-f] [-d] [-m ΟΝΟΜΑ] [-r REV] [REV]"
#, fuzzy
msgid "hooks for integrating with the Bugzilla bug tracker"
msgstr ""
"διασύνδεση με το bug tracker Bugzilla\n"
#, fuzzy
msgid ""
"This hook extension adds comments on bugs in Bugzilla when changesets\n"
"that refer to bugs by Bugzilla ID are seen. The hook does not change\n"
"bug status."
msgstr ""
"Αυτή η επέκταση προσθέτει σχόλια σε bugs στο Bugzilla όταν δει κάποια\n"
"αλλαγή να αναφέρεται σε ανοιχτά bugs. Το hook της επέκτασης δεν αλλάζει\n"
#, fuzzy
msgid ""
"The hook updates the Bugzilla database directly. Only Bugzilla\n"
"installations using MySQL are supported."
msgstr ""
"Το hook ενημερώνει απευθείας τη βάση δεδομένων του Bugzilla. Αυτή η\n"
"έκδοση υποστηρίζει μόνο εγκαταστάσεις του Bugzilla που χρησιμοποιούν τη\n"
#, fuzzy
msgid ""
"The hook relies on a Bugzilla script to send bug change notification\n"
"emails. That script changes between Bugzilla versions; the\n"
"'processmail' script used prior to 2.18 is replaced in 2.18 and\n"
"subsequent versions by 'config/sendbugmail.pl'. Note that these will\n"
"be run by Mercurial as the user pushing the change; you will need to\n"
"ensure the Bugzilla install file permissions are set appropriately."
msgstr ""
"Το hook καλεί εσωτερικά το script του Bugzilla για ειδοποιήσεις μέσω\n"
"email. Το script έχει διαφορετικό όνομα σε μερικές εκδόσεις του\n"
"Bugzilla. Μέχρι την έκδοση 2.18 λέγεται 'processmail'. Από την έκδοση\n"
"2.18 και μετά αντικαταστάθηκε από το 'config/sendbugmail.pl'. Το script\n"
"εκτελείται με τα δικαιώματα του χρήστη που στέλνει τις αλλαγές μέσω\n"
"Mercurial· μπορεί να χρειαστεί να ρυθμίσετε τις άδειες χρήστη στην\n"
"εγκατάσταση του Bugzilla για να λειτουργήσει σωστά."
#, fuzzy
msgid ""
"The extension is configured through three different configuration\n"
"sections. These keys are recognized in the [bugzilla] section:"
msgstr ""
"Η επέκταση bugzilla ρυθμίζεται μέσω τριών διαφορετικών τμημάτων του\n"
"αρχείου εκκίνησης του Mercurial. Οι παρακω επιλογές αναγνωρίζονται στο\n"
"τμήμα [bugzilla]:"
#, fuzzy
msgid ""
"host\n"
" Hostname of the MySQL server holding the Bugzilla database."
msgstr ""
" Το όνομα του εξυπηρετητή MySQL για τη βάση δεδομένων του Bugzilla."
#, fuzzy
msgid ""
"db\n"
" Name of the Bugzilla database in MySQL. Default 'bugs'."
msgstr ""
"db\n"
" Το όνομα της βάσης δεδομένων MySQL του Bugzilla. Προκαθορισμένο όνομα\n"
#, fuzzy
msgid ""
"user\n"
" Username to use to access MySQL server. Default 'bugs'."
msgstr ""
"user\n"
" Το όνομα χρήστη για πρόσβαση στον εξυπηρετητή MySQL. Προκαθορισμένο\n"
#, fuzzy
msgid ""
"password\n"
" Password to use to access MySQL server."
msgstr ""
"password\n"