view release on metacpan or search on metacpan
src/subversion/CHANGES view on Meta::CPAN
Version 0.14.1 [Alpha Interim 1] (released 9 August 2002, revision 2927)
User-visible changes:
* show copy-ancestry in 'svn log -v'
* 'svn co' can take multiple URLs now
* new 'svn ls' command
* new 'svn st --no-ignore' option
* new 'svn --version --quiet' option
* more conservative 'svn help' usage error-message
* more graceful degradation from charset conversion failure
* standardize policy of -q switch behavior
* less intimidating error output
* new SVNParentPath directive for mod_dav_svn <Location>s
* svnlook now correctly displays copied subtrees
* Handbook: additions, tweaks, cleanups, and new French Translation :-)
* svn_load_dirs.pl: auto propset on files matching specified regex, bug fixes
Developer-visible changes:
* integrated the delta-combiner! (issue #531)
* integration of libsvn_wc-baton-locking branch (issue #749)
src/subversion/Makefile.in view on Meta::CPAN
.la.la-a:
sed "/library_names/s/'.*'/''/" $< > $@
# Strip the Content-Type: header from the po file if we don't have a
# gettext that supports bind_textdomain_codeset, so it doesn't try
# to convert our UTF-8 .po files to the locale encoding.
@NO_GETTEXT_CODESET@.po.spo:
@NO_GETTEXT_CODESET@ sed \
@NO_GETTEXT_CODESET@ '/^"Content-Type: text\/plain; charset=UTF-8\\n"$$/d' \
@NO_GETTEXT_CODESET@ $< > $@
@NO_GETTEXT_CODESET@.spo.mo:
@NO_GETTEXT_CODESET@ $(MSGFMT) $(MSGFMTFLAGS) -o $@ $<
# For systems with bind_textdomain_codeset, just leave the Content-Type:
# header alone.
@GETTEXT_CODESET@.po.mo:
@GETTEXT_CODESET@ $(MSGFMT) $(MSGFMTFLAGS) -o $@ $<
src/subversion/configure view on Meta::CPAN
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
int
main ()
{
#ifndef __cplusplus
/* Ultrix mips cc rejects this sort of thing. */
typedef int charset[2];
const charset cs = { 0, 0 };
/* SunOS 4.1.1 cc rejects this. */
char const *const *pcpcc;
char **ppc;
/* NEC SVR4.0.2 mips cc rejects this. */
struct point {int x, y;};
static struct point const zero = {0,0};
/* AIX XL C 1.02.0.0 rejects this.
It does not let you subtract one const X* pointer from another in
an arm of an if-expression whose if-part is not a constant
expression */
src/subversion/doc/user/cvs-crossover-guide.html view on Meta::CPAN
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>CVS to SVN Crossover Guide</title>
<style type="text/css">
body {
font-family: sans-serif;
}
h1 {
text-align: center;
}
h2 {
background: #b0c0f0;
src/subversion/doc/user/svn-best-practices.html view on Meta::CPAN
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Subversion Best Practices</title>
<style type="text/css">
h1 {
text-align: center;
}
</style>
</head>
<body>
src/subversion/subversion/bindings/swig/core.i view on Meta::CPAN
svn_merge_range_t *dup(apr_pool_t *pool) {
return svn_merge_range_dup(self, pool);
};
}
%include svn_diff_h.swg
%inline %{
static VALUE
svn_default_charset(void)
{
return PTR2NUM(APR_DEFAULT_CHARSET);
}
static VALUE
svn_locale_charset(void)
{
return PTR2NUM(APR_LOCALE_CHARSET);
}
/* prompt providers return baton for protecting GC */
static VALUE
svn_swig_rb_auth_get_simple_prompt_provider(
svn_auth_provider_object_t **provider,
svn_auth_simple_prompt_func_t prompt_func,
void *prompt_baton,
src/subversion/subversion/bindings/swig/python/tests/core.py view on Meta::CPAN
self.assertEqual(svn.core.SubversionException('error message', 1).message,
'error message')
def test_mime_type_is_binary(self):
self.assertEqual(0, svn.core.svn_mime_type_is_binary("text/plain"))
self.assertEqual(1, svn.core.svn_mime_type_is_binary("image/png"))
def test_mime_type_validate(self):
self.assertRaises(svn.core.SubversionException,
svn.core.svn_mime_type_validate, "this\nis\ninvalid\n")
svn.core.svn_mime_type_validate("unknown/but-valid; charset=utf8")
def test_exception_interoperability(self):
"""Test if SubversionException is correctly converted into svn_error_t
and vice versa."""
t = utils.Temper()
(_, _, repos_uri) = t.alloc_empty_repo(suffix='-core')
rev = svn.core.svn_opt_revision_t()
rev.kind = svn.core.svn_opt_revision_head
ctx = svn.client.create_context()
src/subversion/subversion/bindings/swig/ruby/core.c view on Meta::CPAN
}
static svn_error_t * svn_diff_output_fns_invoke_output_conflict(
svn_diff_output_fns_t * _obj, void *output_baton, apr_off_t original_start, apr_off_t original_length, apr_off_t modified_start, apr_off_t modified_length, apr_off_t latest_start, apr_off_t latest_length, svn_diff_t *resolved_diff) {
return (_obj->output_conflict)(output_baton, original_start, original_length, modified_start, modified_length, latest_start, latest_length, resolved_diff);
}
static VALUE
svn_default_charset(void)
{
return PTR2NUM(APR_DEFAULT_CHARSET);
}
static VALUE
svn_locale_charset(void)
{
return PTR2NUM(APR_LOCALE_CHARSET);
}
/* prompt providers return baton for protecting GC */
static VALUE
svn_swig_rb_auth_get_simple_prompt_provider(
svn_auth_provider_object_t **provider,
svn_auth_simple_prompt_func_t prompt_func,
void *prompt_baton,
src/subversion/subversion/bindings/swig/ruby/core.c view on Meta::CPAN
}
vresult = Qnil;
}
return vresult;
fail:
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_default_charset(int argc, VALUE *argv, VALUE self) {
VALUE result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
{
result = (VALUE)svn_default_charset();
}
vresult = result;
return vresult;
fail:
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_locale_charset(int argc, VALUE *argv, VALUE self) {
VALUE result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
{
result = (VALUE)svn_locale_charset();
}
vresult = result;
return vresult;
fail:
return Qnil;
}
src/subversion/subversion/bindings/swig/ruby/core.c view on Meta::CPAN
rb_define_module_function(mCore, "svn_diff_fns_invoke_datasource_close", _wrap_svn_diff_fns_invoke_datasource_close, -1);
rb_define_module_function(mCore, "svn_diff_fns_invoke_datasource_get_next_token", _wrap_svn_diff_fns_invoke_datasource_get_next_token, -1);
rb_define_module_function(mCore, "svn_diff_fns_invoke_token_compare", _wrap_svn_diff_fns_invoke_token_compare, -1);
rb_define_module_function(mCore, "svn_diff_fns_invoke_token_discard", _wrap_svn_diff_fns_invoke_token_discard, -1);
rb_define_module_function(mCore, "svn_diff_fns_invoke_token_discard_all", _wrap_svn_diff_fns_invoke_token_discard_all, -1);
rb_define_module_function(mCore, "svn_diff_output_fns_invoke_output_common", _wrap_svn_diff_output_fns_invoke_output_common, -1);
rb_define_module_function(mCore, "svn_diff_output_fns_invoke_output_diff_modified", _wrap_svn_diff_output_fns_invoke_output_diff_modified, -1);
rb_define_module_function(mCore, "svn_diff_output_fns_invoke_output_diff_latest", _wrap_svn_diff_output_fns_invoke_output_diff_latest, -1);
rb_define_module_function(mCore, "svn_diff_output_fns_invoke_output_diff_common", _wrap_svn_diff_output_fns_invoke_output_diff_common, -1);
rb_define_module_function(mCore, "svn_diff_output_fns_invoke_output_conflict", _wrap_svn_diff_output_fns_invoke_output_conflict, -1);
rb_define_module_function(mCore, "svn_default_charset", _wrap_svn_default_charset, -1);
rb_define_module_function(mCore, "svn_locale_charset", _wrap_svn_locale_charset, -1);
rb_define_module_function(mCore, "svn_swig_rb_auth_get_simple_prompt_provider", _wrap_svn_swig_rb_auth_get_simple_prompt_provider, -1);
rb_define_module_function(mCore, "svn_swig_rb_auth_get_ssl_client_cert_prompt_provider", _wrap_svn_swig_rb_auth_get_ssl_client_cert_prompt_provider, -1);
rb_define_module_function(mCore, "svn_swig_rb_auth_get_ssl_client_cert_pw_prompt_provider", _wrap_svn_swig_rb_auth_get_ssl_client_cert_pw_prompt_provider, -1);
rb_define_module_function(mCore, "svn_swig_rb_auth_get_ssl_server_trust_prompt_provider", _wrap_svn_swig_rb_auth_get_ssl_server_trust_prompt_provider, -1);
rb_define_module_function(mCore, "svn_swig_rb_auth_get_username_prompt_provider", _wrap_svn_swig_rb_auth_get_username_prompt_provider, -1);
rb_define_module_function(mCore, "svn_swig_mergeinfo_merge", _wrap_svn_swig_mergeinfo_merge, -1);
rb_define_module_function(mCore, "svn_swig_mergeinfo_sort", _wrap_svn_swig_mergeinfo_sort, -1);
rb_define_module_function(mCore, "svn_swig_rangelist_merge", _wrap_svn_swig_rangelist_merge, -1);
rb_define_module_function(mCore, "svn_swig_rangelist_reverse", _wrap_svn_swig_rangelist_reverse, -1);
}
src/subversion/subversion/bindings/swig/ruby/svn/commit-mailer.rb view on Meta::CPAN
end
end
def make_header(body_encoding, body_encoding_bit)
headers = []
headers << x_author
headers << x_revision
headers << x_repository
headers << x_id
headers << "MIME-Version: 1.0"
headers << "Content-Type: text/plain; charset=#{body_encoding}"
headers << "Content-Transfer-Encoding: #{body_encoding_bit}"
headers << "From: #{from}"
headers << "To: #{to.join(', ')}"
headers << "Subject: #{make_subject}"
headers << "Date: #{Time.now.rfc2822}"
headers.find_all do |header|
/\A\s*\z/ !~ header
end.join("\n")
end
src/subversion/subversion/bindings/swig/ruby/svn/core.rb view on Meta::CPAN
class << self
alias binary_mime_type? mime_type_is_binary
alias prop_diffs2 prop_diffs
def prop_diffs(target_props, source_props)
Property.prop_diffs(target_props, source_props)
end
end
DEFAULT_CHARSET = default_charset
LOCALE_CHARSET = locale_charset
AuthCredSSLClientCert = AuthCredSslClientCert
AuthCredSSLClientCertPw = AuthCredSslClientCertPw
AuthCredSSLServerTrust = AuthCredSslServerTrust
dirent_all = 0
constants.each do |name|
dirent_all |= const_get(name) if /^DIRENT_/ =~ name
end
DIRENT_ALL = dirent_all
src/subversion/subversion/bindings/swig/ruby/svn/core.rb view on Meta::CPAN
diff.original = original
diff.modified = modified
diff.latest = latest
diff.ancestor = ancestor
end
diff
end
end
def unified(orig_label, mod_label, header_encoding=nil)
header_encoding ||= Svn::Core.locale_charset
output = StringIO.new
args = [
output, self, @original, @modified,
orig_label, mod_label, header_encoding
]
Core.diff_file_output_unified2(*args)
output.rewind
output.read
end
def merge(conflict_original=nil, conflict_modified=nil,
conflict_latest=nil, conflict_separator=nil,
display_original_in_conflict=true,
display_resolved_conflicts=true)
header_encoding ||= Svn::Core.locale_charset
output = StringIO.new
args = [
output, self, @original, @modified, @latest,
conflict_original, conflict_modified,
conflict_latest, conflict_separator,
display_original_in_conflict,
display_resolved_conflicts,
]
Core.diff_file_output_merge(*args)
output.rewind
src/subversion/subversion/include/svn_io.h view on Meta::CPAN
/** Invoke the configured @c diff program, with @a user_args (an array
* of utf8-encoded @a num_user_args arguments) if they are specified
* (that is, if @a user_args is non-NULL), or "-u" if they are not.
* If @a user_args is NULL, the value of @a num_user_args is ignored.
*
* Diff runs in utf8-encoded @a dir, and its exit status is stored in
* @a exitcode, if it is not @c NULL.
*
* If @a label1 and/or @a label2 are not NULL they will be passed to the diff
* process as the arguments of "-L" options. @a label1 and @a label2 are also
* in utf8, and will be converted to native charset along with the other args.
*
* @a from is the first file passed to diff, and @a to is the second. The
* stdout of diff will be sent to @a outfile, and the stderr to @a errfile.
*
* @a diff_cmd must be non-NULL.
*
* Do all allocation in @a pool.
* @since New in 1.6.0.
*/
svn_error_t *
src/subversion/subversion/include/svn_path.h view on Meta::CPAN
*
* @since New in 1.1.
*/
const char *
svn_path_uri_autoescape(const char *uri, apr_pool_t *pool);
/** @} */
/** Charset conversion stuff
*
* @defgroup svn_path_charset_stuff Charset conversion
* @{
*/
/** Convert @a path_utf8 from UTF-8 to the internal encoding used by APR. */
svn_error_t *
svn_path_cstring_from_utf8(const char **path_apr,
const char *path_utf8,
apr_pool_t *pool);
/** Convert @a path_apr from the internal encoding used by APR to UTF-8. */
src/subversion/subversion/include/svn_types.h view on Meta::CPAN
* ### so little.
*/
/** Validate @a mime_type.
*
* If @a mime_type does not contain a "/", or ends with non-alphanumeric
* data, return #SVN_ERR_BAD_MIME_TYPE, else return success.
*
* Use @a pool only to find error allocation.
*
* Goal: to match both "foo/bar" and "foo/bar; charset=blah", without
* being too strict about it, but to disallow mime types that have
* quotes, newlines, or other garbage on the end, such as might be
* unsafe in an HTTP header.
*/
svn_error_t *
svn_mime_type_validate(const char *mime_type,
apr_pool_t *pool);
/** Return FALSE iff @a mime_type is a textual type.
*
src/subversion/subversion/libsvn_subr/magic.c view on Meta::CPAN
{
/* Only return binary mime-types. */
if (strncmp(magic_mimetype, "text/", 5) == 0)
magic_mimetype = NULL;
else
{
svn_error_t *err;
#ifndef MAGIC_MIME_TYPE
char *p;
/* Strip off trailing stuff like " charset=ascii". */
p = strchr(magic_mimetype, ' ');
if (p)
*p = '\0';
#endif
/* Make sure we got a valid mime type. */
err = svn_mime_type_validate(magic_mimetype, scratch_pool);
if (err)
{
if (err->apr_err == SVN_ERR_BAD_MIME_TYPE)
{
src/subversion/subversion/libsvn_subr/utf.c view on Meta::CPAN
/* Use these static strings to maximize performance on standard conversions.
* Any strings on other locations are still valid, however.
*/
static const char *SVN_UTF_NTOU_XLATE_HANDLE = "svn-utf-ntou-xlate-handle";
static const char *SVN_UTF_UTON_XLATE_HANDLE = "svn-utf-uton-xlate-handle";
static const char *SVN_APR_UTF8_CHARSET = "UTF-8";
static svn_mutex__t *xlate_handle_mutex = NULL;
static svn_boolean_t assume_native_charset_is_utf8 = FALSE;
/* The xlate handle cache is a global hash table with linked lists of xlate
* handles. In multi-threaded environments, a thread "borrows" an xlate
* handle from the cache during a translation and puts it back afterwards.
* This avoids holding a global lock for all translations.
* If there is no handle for a particular key when needed, a new is
* handle is created and put in the cache after use.
* This means that there will be at most N handles open for a key, where N
* is the number of simultanous handles in use for that key. */
src/subversion/subversion/libsvn_subr/utf.c view on Meta::CPAN
return;
}
xlate_handle_mutex = mutex;
xlate_handle_hash = apr_hash_make(subpool);
apr_pool_cleanup_register(subpool, NULL, xlate_cleanup,
apr_pool_cleanup_null);
}
if (!assume_native_charset_is_utf8)
assume_native_charset_is_utf8 = assume_native_utf8;
}
/* Return a unique string key based on TOPAGE and FROMPAGE. TOPAGE and
* FROMPAGE can be any valid arguments of the same name to
* apr_xlate_open(). Allocate the returned string in POOL. */
static const char*
get_xlate_key(const char *topage,
const char *frompage,
apr_pool_t *pool)
{
src/subversion/subversion/libsvn_subr/utf.c view on Meta::CPAN
}
return SVN_NO_ERROR;
}
/* Return the apr_xlate handle for converting native characters to UTF-8. */
static svn_error_t *
get_ntou_xlate_handle_node(xlate_handle_node_t **ret, apr_pool_t *pool)
{
return get_xlate_handle_node(ret, SVN_APR_UTF8_CHARSET,
assume_native_charset_is_utf8
? SVN_APR_UTF8_CHARSET
: SVN_APR_LOCALE_CHARSET,
SVN_UTF_NTOU_XLATE_HANDLE, pool);
}
/* Return the apr_xlate handle for converting UTF-8 to native characters.
Create one if it doesn't exist. If unable to find a handle, or
unable to create one because apr_xlate_open returned APR_EINVAL, then
set *RET to null and return SVN_NO_ERROR; if fail for some other
reason, return error. */
static svn_error_t *
get_uton_xlate_handle_node(xlate_handle_node_t **ret, apr_pool_t *pool)
{
return get_xlate_handle_node(ret,
assume_native_charset_is_utf8
? SVN_APR_UTF8_CHARSET
: SVN_APR_LOCALE_CHARSET,
SVN_APR_UTF8_CHARSET,
SVN_UTF_UTON_XLATE_HANDLE, pool);
}
/* Copy LEN bytes of SRC, converting non-ASCII and zero bytes to ?\nnn
sequences, allocating the result in POOL. */
static const char *
src/subversion/subversion/libsvn_subr/validate.c view on Meta::CPAN
#include "svn_private_config.h"
/*** Code. ***/
svn_error_t *
svn_mime_type_validate(const char *mime_type, apr_pool_t *pool)
{
/* Since svn:mime-type can actually contain a full content type
specification, e.g., "text/html; charset=UTF-8", make sure we're
only looking at the media type here. */
const apr_size_t len = strcspn(mime_type, "; ");
const apr_size_t len2 = strlen(mime_type);
const char *const slash_pos = strchr(mime_type, '/');
apr_size_t i;
const char *tspecials = "()<>@,;:\\\"/[]?=";
if (len == 0)
return svn_error_createf
(SVN_ERR_BAD_MIME_TYPE, NULL,
src/subversion/subversion/libsvn_subr/win32_xlate.c view on Meta::CPAN
}
else if (!strcmp(page_name, "UTF-8"))
{
*page_id_p = CP_UTF8;
return APR_SUCCESS;
}
/* Use codepage identifier nnn if the codepage name is in the form
of "CPnnn".
We need this code since apr_os_locale_encoding() and svn_cmdline_init()
generates such codepage names even if they are not valid IANA charset
name. */
if ((page_name[0] == 'c' || page_name[0] == 'C')
&& (page_name[1] == 'p' || page_name[1] == 'P'))
{
*page_id_p = atoi(page_name + 2);
return APR_SUCCESS;
}
err = svn_atomic__init_once(&com_initialized, initialize_com, NULL, pool);
src/subversion/subversion/mod_dav_svn/liveprops.c view on Meta::CPAN
|| resource->info->restype == DAV_SVN_RESTYPE_ME))
{
return DAV_PROP_INSERT_NOTSUPP;
}
if (resource->collection) /* defaults for directories */
{
if (resource->info->repos->xslt_uri)
mime_type = "text/xml";
else
mime_type = "text/html; charset=UTF-8";
}
else
{
if ((serr = svn_fs_node_prop(&pval, resource->info->root.root,
resource->info->repos_path,
SVN_PROP_MIME_TYPE, scratch_pool)))
{
svn_error_clear(serr);
pval = NULL;
}
src/subversion/subversion/mod_dav_svn/repos.c view on Meta::CPAN
/* For a directory, we will send text/html or text/xml. If we have a delta
base, then we will always be generating an svndiff. Otherwise,
we need to fetch the appropriate MIME type from the resource's
properties (and use text/plain if it isn't there). */
if (resource->collection)
{
if (resource->info->repos->xslt_uri)
mimetype = "text/xml";
else
mimetype = "text/html; charset=UTF-8";
}
else if (resource->info->delta_base != NULL)
{
dav_svn__uri_info info;
/* First order of business is to parse it. */
serr = dav_svn__simple_parse_uri(&info, resource,
resource->info->delta_base,
resource->pool);
src/subversion/subversion/po/de.po view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: subversion 1.8\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2014-11-08 21:44+0000\n"
"PO-Revision-Date: 2013-07-11 20:22+0100\n"
"Last-Translator: Subversion Developers <dev@subversion.apache.org>\n"
"Language-Team: German <dev@subversion.apache.org>\n"
"Language: de\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"
#. Constructing nice error messages for roots.
#. Build an SVN_ERR_FS_NOT_FOUND error, with a detailed error text,
#. for PATH in ROOT. ROOT is of type svn_fs_root_t *.
#: ../include/private/svn_fs_util.h:81
#, c-format
msgid "File not found: transaction '%s', path '%s'"
msgstr "Datei nicht gefunden: Transaktion »%s«, Pfad »%s«"
src/subversion/subversion/po/de.po view on Meta::CPAN
#: ../svn/svn.c:180
msgid "read log message from file ARG"
msgstr "Logmeldung aus Datei PAR lesen"
#: ../svn/svn.c:182
msgid "give output suitable for concatenation"
msgstr "Ausgabe für Verkettung formatieren"
#: ../svn/svn.c:184
msgid "treat value as being in charset encoding ARG"
msgstr ""
"Wert behandeln, als sei er in der Zeichenkodierung\n"
" PAR"
#: ../svn/svn.c:185 ../svnadmin/svnadmin.c:214
#: ../svndumpfilter/svndumpfilter.c:1054 ../svnlook/svnlook.c:168
#: ../svnrdump/svnrdump.c:144 ../svnserve/svnserve.c:287
#: ../svnsync/svnsync.c:242 ../svnversion/svnversion.c:141
msgid "show program version information"
msgstr "Zeige Versionsinformationen des Programms"
src/subversion/subversion/po/es.po view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: subversion 1.8\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2010-11-12 08:49-0600\n"
"PO-Revision-Date: 2009-02-19 14:22-0200\n"
"Last-Translator: Subversion Developers <dev@subversion.tigris.org>\n"
"Language-Team: Spanish <dev@subversion.tigris.org>\n"
"Language: es\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"
#. Constructing nice error messages for roots.
#. Build an SVN_ERR_FS_NOT_FOUND error, with a detailed error text,
#. for PATH in ROOT. ROOT is of type svn_fs_root_t *.
#: ../include/private/svn_fs_util.h:68
#, c-format
msgid "File not found: transaction '%s', path '%s'"
msgstr "Archivo no encontrado: transacción '%s', ruta '%s'"
src/subversion/subversion/po/es.po view on Meta::CPAN
#: ../libsvn_subr/time.c:85
msgid " (%a, %d %b %Y)"
msgstr " (%a %d de %b de %Y)"
#: ../libsvn_subr/token.c:66
#, fuzzy, c-format
msgid "Token '%s' is unrecognized"
msgstr "'%s' tiene un tipo de nodo no reconocido"
#: ../libsvn_subr/utf.c:190
msgid "Can't lock charset translation mutex"
msgstr "No se pudo lockear el mutex de conversión de codificación"
#: ../libsvn_subr/utf.c:208 ../libsvn_subr/utf.c:304
msgid "Can't unlock charset translation mutex"
msgstr "No se pudo deslockear el mutex de conversión de codificación"
#: ../libsvn_subr/utf.c:262
#, c-format
msgid "Can't create a character converter from native encoding to '%s'"
msgstr "No se pudo crear un convertidor de caracteres de la codificación nativa a '%s'"
#: ../libsvn_subr/utf.c:266
#, c-format
msgid "Can't create a character converter from '%s' to native encoding"
src/subversion/subversion/po/es.po view on Meta::CPAN
#: ../svn/main.c:165
msgid "read log message from file ARG"
msgstr "leer mensaje de log del archivo PAR"
#: ../svn/main.c:167
msgid "give output suitable for concatenation"
msgstr "proveer salida apta de ser unida a otras salidas"
#: ../svn/main.c:169
msgid "treat value as being in charset encoding ARG"
msgstr "el valor está en la codificación de caracteres PAR"
#: ../svn/main.c:170 ../svnadmin/main.c:250 ../svndumpfilter/main.c:922
#: ../svnlook/main.c:145 ../svnrdump/svnrdump.c:89 ../svnserve/main.c:220
#: ../svnsync/main.c:210 ../svnversion/main.c:135
msgid "show program version information"
msgstr "mostrar información de la versión"
#: ../svn/main.c:171
msgid "print extra information"
src/subversion/subversion/po/fr.po view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: subversion 1.8\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2012-07-07 14:51+0200\n"
"PO-Revision-Date: 2012-07-07 17:04+0200\n"
"Last-Translator: Subversion Developers <dev@subversion.tigris.org>\n"
"Language-Team: French <dev@subversion.tigris.org>\n"
"Language: fr\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"
#
# TENTATIVE DE LEXIQUE DU VOCABULAIRE DE SUBVERSION EN FRANÃAIS
#
# Vocabulaire technique, éventuellement discutable, utilisé
# de manière aussi consistante que possible dans la traduction.
#
# La traduction ne colle pas le texte de trop près, mais s'autorise
src/subversion/subversion/po/fr.po view on Meta::CPAN
#: ../svn/main.c:177
msgid "read log message from file ARG"
msgstr "lit le message de propagation à partir du fichier ARG"
#: ../svn/main.c:179
msgid "give output suitable for concatenation"
msgstr "produit une sortie concaténable"
#: ../svn/main.c:181
msgid "treat value as being in charset encoding ARG"
msgstr "traite la valeur comme étant du texte avec l'encodage ARG"
#: ../svn/main.c:182 ../svnadmin/main.c:210 ../svndumpfilter/main.c:1015
#: ../svnlook/main.c:147 ../svnrdump/svnrdump.c:134 ../svnserve/main.c:270
#: ../svnsync/main.c:232 ../svnversion/main.c:139
msgid "show program version information"
msgstr "affiche la version du programme"
#: ../svn/main.c:183
msgid "print extra information"
src/subversion/subversion/po/it.po view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: subversion 1.8\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2010-11-12 08:49-0600\n"
"PO-Revision-Date: 2007-10-12 10:09+0200\n"
"Last-Translator: Subversion Developers <dev@subversion.tigris.org>\n"
"Language-Team: Italian <dev@subversion.tigris.org>\n"
"Language: it\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"
"X-Poedit-Basepath: ..\n"
#. Constructing nice error messages for roots.
#. Build an SVN_ERR_FS_NOT_FOUND error, with a detailed error text,
#. for PATH in ROOT. ROOT is of type svn_fs_root_t *.
#: ../include/private/svn_fs_util.h:68
#, fuzzy, c-format
msgid "File not found: transaction '%s', path '%s'"
src/subversion/subversion/po/it.po view on Meta::CPAN
#: ../libsvn_subr/time.c:85
msgid " (%a, %d %b %Y)"
msgstr "(%a, %d %b %Y)"
#: ../libsvn_subr/token.c:66
#, fuzzy, c-format
msgid "Token '%s' is unrecognized"
msgstr "'%s' ha un tipo di nodo non riconosciuto"
#: ../libsvn_subr/utf.c:190
msgid "Can't lock charset translation mutex"
msgstr "Non riesco a bloccare il mutex per la traduzione dell'insieme dei caratteri"
#: ../libsvn_subr/utf.c:208 ../libsvn_subr/utf.c:304
msgid "Can't unlock charset translation mutex"
msgstr "Non riesco a sbloccare il mutex per la traduzione dell'insieme dei caratteri"
#: ../libsvn_subr/utf.c:262
#, c-format
msgid "Can't create a character converter from native encoding to '%s'"
msgstr "Non riesco a creare un convertitore di caratteri dalla codifica nativa a '%s'"
#: ../libsvn_subr/utf.c:266
#, c-format
msgid "Can't create a character converter from '%s' to native encoding"
src/subversion/subversion/po/it.po view on Meta::CPAN
#: ../svn/main.c:165
msgid "read log message from file ARG"
msgstr "legge il messagio di log dal file ARG"
#: ../svn/main.c:167
msgid "give output suitable for concatenation"
msgstr "restituisce un output adatto alla concatenazione"
#: ../svn/main.c:169
msgid "treat value as being in charset encoding ARG"
msgstr "tratta il valore come se fosse codificato in ARG"
#: ../svn/main.c:170 ../svnadmin/main.c:250 ../svndumpfilter/main.c:922
#: ../svnlook/main.c:145 ../svnrdump/svnrdump.c:89 ../svnserve/main.c:220
#: ../svnsync/main.c:210 ../svnversion/main.c:135
msgid "show program version information"
msgstr "mostra le informazioni sulla versione del programma"
#: ../svn/main.c:171
msgid "print extra information"
src/subversion/subversion/po/ja.po view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: subversion 1.8\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2010-11-12 08:49-0600\n"
"PO-Revision-Date: 2007-10-28 01:23+0900\n"
"Last-Translator: Subversion Developers <dev@subversion.tigris.org>\n"
"Language-Team: Japanese <dev@subversion.tigris.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Constructing nice error messages for roots.
#. Build an SVN_ERR_FS_NOT_FOUND error, with a detailed error text,
#. for PATH in ROOT. ROOT is of type svn_fs_root_t *.
#: ../include/private/svn_fs_util.h:68
#, c-format
msgid "File not found: transaction '%s', path '%s'"
msgstr "ãã¡ã¤ã«ãè¦ã¤ããã¾ãã: ãã©ã³ã¶ã¯ã·ã§ã³ %s, ãã¹ '%s'"
src/subversion/subversion/po/ja.po view on Meta::CPAN
#: ../libsvn_subr/time.c:85
msgid " (%a, %d %b %Y)"
msgstr " (%x (%a))"
#: ../libsvn_subr/token.c:66
#, fuzzy, c-format
msgid "Token '%s' is unrecognized"
msgstr "'%s' ã«ã¯èªèã§ããªããã¼ã種å¥ãããã¾ã"
#: ../libsvn_subr/utf.c:190
msgid "Can't lock charset translation mutex"
msgstr "æåã³ã¼ã夿ã®ç¸äºæä»ããã¯ãããããã¾ãã"
#: ../libsvn_subr/utf.c:208 ../libsvn_subr/utf.c:304
msgid "Can't unlock charset translation mutex"
msgstr "æåã³ã¼ã夿ã®ç¸äºæä»ããã¯ãè§£é¤ã§ãã¾ãã"
#: ../libsvn_subr/utf.c:262
#, c-format
msgid "Can't create a character converter from native encoding to '%s'"
msgstr "ãã¤ãã£ãã®ã¨ã³ã³ã¼ãã£ã³ã°ãã '%s' ã¸ã®æååã³ã³ãã¼ã¿ã使ã§ãã¾ãã"
#: ../libsvn_subr/utf.c:266
#, c-format
msgid "Can't create a character converter from '%s' to native encoding"
src/subversion/subversion/po/ja.po view on Meta::CPAN
# * 29 half-size characters are displayed on the left.
#: ../svn/main.c:167
msgid "give output suitable for concatenation"
msgstr ""
"ä»ã®åºåã¨é£çµããã®ã«é©ããå½¢å¼ã§åºåã表示ãã¾\n"
" ã"
# * Description for 'svn --encoding'.
# * 29 half-size characters are displayed on the left.
#: ../svn/main.c:169
msgid "treat value as being in charset encoding ARG"
msgstr ""
"æåã¨ã³ã³ã¼ãã£ã³ã°ã <ARG> ã§ããã¨ãã¦å¦çã\n"
" ã¾ã"
# * Description for 'svn{,admin,dumpfilter,look,serve,sync,version} --version'.
# * 29 half-size characters are displayed on the left.
#: ../svn/main.c:170 ../svnadmin/main.c:250 ../svndumpfilter/main.c:922
#: ../svnlook/main.c:145 ../svnrdump/svnrdump.c:89 ../svnserve/main.c:220
#: ../svnsync/main.c:210 ../svnversion/main.c:135
msgid "show program version information"
src/subversion/subversion/po/ko.po view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: subversion 1.8\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2011-03-07 00:53+0900\n"
"PO-Revision-Date: 2011-03-03 18:16+0900\n"
"Last-Translator: Subversion Developers <dev@subversion.tigris.org>\n"
"Language-Team: Korean <dev@subversion.tigris.org>\n"
"Language: ko\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"
#. Constructing nice error messages for roots.
#. Build an SVN_ERR_FS_NOT_FOUND error, with a detailed error text,
#. for PATH in ROOT. ROOT is of type svn_fs_root_t *.
#: ../include/private/svn_fs_util.h:68
#, c-format
msgid "File not found: transaction '%s', path '%s'"
msgstr "íì¼ ë°ê²¬ëì§ ìì: í¸ëìì
'%s', ê²½ë¡ '%s'"
src/subversion/subversion/po/ko.po view on Meta::CPAN
#: ../libsvn_subr/time.c:85
msgid " (%a, %d %b %Y)"
msgstr " (%Y-%m-%d, %a)"
#: ../libsvn_subr/token.c:66
#, c-format
msgid "Token '%s' is unrecognized"
msgstr "'%s'ì(ë) ì¸ì ë¶ê°ë¥í í í°ì
ëë¤"
#: ../libsvn_subr/utf.c:190
msgid "Can't lock charset translation mutex"
msgstr "문ìë³íì© ë®¤í
ì¤ë¥¼ ì ê¸ ì ììµëë¤"
#: ../libsvn_subr/utf.c:208 ../libsvn_subr/utf.c:304
msgid "Can't unlock charset translation mutex"
msgstr "문ìë³íì© ë®¤í
ì¤ë¥¼ í´ì í ì ììµëë¤"
#: ../libsvn_subr/utf.c:262
#, c-format
msgid "Can't create a character converter from native encoding to '%s'"
msgstr "기본 ì¸ì½ë©ìì '%s'(ì¼)ë¡ ë³íí ì ìë 컨ë²í°ë¥¼ ë§ë¤ ì ììµëë¤"
#: ../libsvn_subr/utf.c:266
#, c-format
msgid "Can't create a character converter from '%s' to native encoding"
src/subversion/subversion/po/ko.po view on Meta::CPAN
#: ../svn/main.c:164
msgid "read log message from file ARG"
msgstr "ARGìì ë¡ê·¸ ë©ìì§ë¥¼ ì½ìµëë¤"
#: ../svn/main.c:166
msgid "give output suitable for concatenation"
msgstr "ë§ë¶ì´ê¸° ì¬ì´ ííë¡ ì¶ë ¥í©ëë¤"
#: ../svn/main.c:168
msgid "treat value as being in charset encoding ARG"
msgstr "ê°ì ARGì í´ë¹íë 문ìì½ëë¡ ì·¨ê¸í©ëë¤"
#: ../svn/main.c:169 ../svnadmin/main.c:216 ../svndumpfilter/main.c:923
#: ../svnlook/main.c:146 ../svnrdump/svnrdump.c:133 ../svnserve/main.c:236
#: ../svnsync/main.c:221 ../svnversion/main.c:139
msgid "show program version information"
msgstr "íë¡ê·¸ë¨ ë²ì ¼ ì 보를 ë³´ì¬ì¤ëë¤"
#: ../svn/main.c:170
msgid "print extra information"
src/subversion/subversion/po/nb.po view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: subversion 1.8\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2010-11-12 08:49-0600\n"
"PO-Revision-Date: 2009-10-14 16:21+0200\n"
"Last-Translator: Subversion Developers <dev@subversion.tigris.org>\n"
"Language-Team: Norwegian <dev@subversion.tigris.org>\n"
"Language: no\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"
#. Constructing nice error messages for roots.
#. Build an SVN_ERR_FS_NOT_FOUND error, with a detailed error text,
#. for PATH in ROOT. ROOT is of type svn_fs_root_t *.
#: ../include/private/svn_fs_util.h:68
#, c-format
msgid "File not found: transaction '%s', path '%s'"
msgstr "Fant ikke filen: Transaksjon «%s», sti «%s»"
src/subversion/subversion/po/nb.po view on Meta::CPAN
#: ../libsvn_subr/time.c:85
msgid " (%a, %d %b %Y)"
msgstr " (%a, %d %b %Y)"
#: ../libsvn_subr/token.c:66
#, fuzzy, c-format
msgid "Token '%s' is unrecognized"
msgstr "«%s» har en ukjent nodetype"
#: ../libsvn_subr/utf.c:190
msgid "Can't lock charset translation mutex"
msgstr "Kan ikke låse mutex for tegnsettkonvertering"
#: ../libsvn_subr/utf.c:208 ../libsvn_subr/utf.c:304
msgid "Can't unlock charset translation mutex"
msgstr "Kan ikke låse opp mutex for tegnsettkonvertering"
#: ../libsvn_subr/utf.c:262
#, c-format
msgid "Can't create a character converter from native encoding to '%s'"
msgstr "Kan ikke opprette tegnkonvertering fra lokal koding til «%s»"
#: ../libsvn_subr/utf.c:266
#, c-format
msgid "Can't create a character converter from '%s' to native encoding"
src/subversion/subversion/po/nb.po view on Meta::CPAN
#: ../svn/main.c:165
msgid "read log message from file ARG"
msgstr "les loggmelding fra filen ARG"
#: ../svn/main.c:167
msgid "give output suitable for concatenation"
msgstr "lag utdata som kan slås sammen"
#: ../svn/main.c:169
msgid "treat value as being in charset encoding ARG"
msgstr "behandle verdi som om tegnkoden ARG gjelder"
#: ../svn/main.c:170 ../svnadmin/main.c:250 ../svndumpfilter/main.c:922
#: ../svnlook/main.c:145 ../svnrdump/svnrdump.c:89 ../svnserve/main.c:220
#: ../svnsync/main.c:210 ../svnversion/main.c:135
msgid "show program version information"
msgstr "vis versjonsinformasjon for programmet"
#: ../svn/main.c:171
msgid "print extra information"
src/subversion/subversion/po/pl.po view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: subversion 1.8\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2010-11-12 08:49-0600\n"
"PO-Revision-Date: 2009-11-14 22:00+0100\n"
"Last-Translator: Subversion Developers <dev@subversion.tigris.org>\n"
"Language-Team: Polish <dev@subversion.tigris.org>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. Constructing nice error messages for roots.
#. Build an SVN_ERR_FS_NOT_FOUND error, with a detailed error text,
#. for PATH in ROOT. ROOT is of type svn_fs_root_t *.
#: ../include/private/svn_fs_util.h:68
#, c-format
msgid "File not found: transaction '%s', path '%s'"
msgstr "Plik nieznaleziony: transakcja '%s', Åcieżka '%s'"
src/subversion/subversion/po/pl.po view on Meta::CPAN
#: ../libsvn_subr/time.c:85
msgid " (%a, %d %b %Y)"
msgstr " (%a)"
#: ../libsvn_subr/token.c:66
#, c-format
msgid "Token '%s' is unrecognized"
msgstr "Żeton '%s' nierozpoznany"
#: ../libsvn_subr/utf.c:190
msgid "Can't lock charset translation mutex"
msgstr "Nie można zablokowaÄ muteksu translacji zestawu znaków"
#: ../libsvn_subr/utf.c:208 ../libsvn_subr/utf.c:304
msgid "Can't unlock charset translation mutex"
msgstr "Nie można odblokowaÄ muteksu translacji zestawu znaków"
#: ../libsvn_subr/utf.c:262
#, c-format
msgid "Can't create a character converter from native encoding to '%s'"
msgstr "Nie można stworzyÄ konwertera znaków z natywnego kodowania do '%s'"
#: ../libsvn_subr/utf.c:266
#, c-format
msgid "Can't create a character converter from '%s' to native encoding"
src/subversion/subversion/po/pl.po view on Meta::CPAN
#: ../svn/main.c:165
msgid "read log message from file ARG"
msgstr "czytaj opis zmian z pliku ARG"
#: ../svn/main.c:167
msgid "give output suitable for concatenation"
msgstr "generuj wynik w sposób umożliwiajÄ
cy konkatenacjÄ"
#: ../svn/main.c:169
msgid "treat value as being in charset encoding ARG"
msgstr "zakÅadaj, iż parametry sÄ
podane w kodowaniu ARG"
#: ../svn/main.c:170 ../svnadmin/main.c:250 ../svndumpfilter/main.c:922
#: ../svnlook/main.c:145 ../svnrdump/svnrdump.c:89 ../svnserve/main.c:220
#: ../svnsync/main.c:210 ../svnversion/main.c:135
msgid "show program version information"
msgstr "pokaż informacjÄ o wersji programu"
#: ../svn/main.c:171
msgid "print extra information"
src/subversion/subversion/po/pt_BR.po view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: subversion 1.8\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2010-11-12 08:49-0600\n"
"PO-Revision-Date: 2004-07-26 19:19-300\n"
"Last-Translator: Subversion Developers <dev@subversion.tigris.org>\n"
"Language-Team: Brazilian Portuguese <dev@subversion.tigris.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Constructing nice error messages for roots.
#. Build an SVN_ERR_FS_NOT_FOUND error, with a detailed error text,
#. for PATH in ROOT. ROOT is of type svn_fs_root_t *.
#: ../include/private/svn_fs_util.h:68
#, c-format
msgid "File not found: transaction '%s', path '%s'"
msgstr "Arquivo não encontrado: transação '%s', caminho '%s'"
src/subversion/subversion/po/pt_BR.po view on Meta::CPAN
#: ../libsvn_subr/time.c:85
msgid " (%a, %d %b %Y)"
msgstr ""
#: ../libsvn_subr/token.c:66
#, fuzzy, c-format
msgid "Token '%s' is unrecognized"
msgstr "'%s' possui um tipo de nó não reconhecido"
#: ../libsvn_subr/utf.c:190
msgid "Can't lock charset translation mutex"
msgstr "Não foi possÃvel travar o mutex de tradução do conjunto de caracteres"
#: ../libsvn_subr/utf.c:208 ../libsvn_subr/utf.c:304
msgid "Can't unlock charset translation mutex"
msgstr "Não foi possÃvel destravar o mutex de tradução do conjunto de caracteres"
#: ../libsvn_subr/utf.c:262
#, c-format
msgid "Can't create a character converter from native encoding to '%s'"
msgstr "Não foi possÃvel criar conversor de caracteres de codificação nativa para '%s'"
#: ../libsvn_subr/utf.c:266
#, c-format
msgid "Can't create a character converter from '%s' to native encoding"
src/subversion/subversion/po/pt_BR.po view on Meta::CPAN
#: ../svn/main.c:165
msgid "read log message from file ARG"
msgstr "ler mensagem de log do arquivo ARG"
#: ../svn/main.c:167
msgid "give output suitable for concatenation"
msgstr "gerar saÃda própria para concatenação"
#: ../svn/main.c:169
msgid "treat value as being in charset encoding ARG"
msgstr "tratar valor como estando na codificação de conjunto de caracteres ARG"
#: ../svn/main.c:170 ../svnadmin/main.c:250 ../svndumpfilter/main.c:922
#: ../svnlook/main.c:145 ../svnrdump/svnrdump.c:89 ../svnserve/main.c:220
#: ../svnsync/main.c:210 ../svnversion/main.c:135
msgid "show program version information"
msgstr "mostra informação de versão do programa"
#: ../svn/main.c:171
msgid "print extra information"
src/subversion/subversion/po/subversion.pot view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2014-12-09 02:26+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. Constructing nice error messages for roots.
#. Build an SVN_ERR_FS_NOT_FOUND error, with a detailed error text,
#. for PATH in ROOT. ROOT is of type svn_fs_root_t *.
#: ../include/private/svn_fs_util.h:81
#, c-format
msgid "File not found: transaction '%s', path '%s'"
msgstr ""
src/subversion/subversion/po/subversion.pot view on Meta::CPAN
#: ../svn/svn.c:180
msgid "read log message from file ARG"
msgstr ""
#: ../svn/svn.c:182
msgid "give output suitable for concatenation"
msgstr ""
#: ../svn/svn.c:184
msgid "treat value as being in charset encoding ARG"
msgstr ""
#: ../svn/svn.c:185 ../svnadmin/svnadmin.c:214
#: ../svndumpfilter/svndumpfilter.c:1054 ../svnlook/svnlook.c:168
#: ../svnrdump/svnrdump.c:144 ../svnserve/svnserve.c:287
#: ../svnsync/svnsync.c:242 ../svnversion/svnversion.c:141
msgid "show program version information"
msgstr ""
#: ../svn/svn.c:186
src/subversion/subversion/po/sv.po view on Meta::CPAN
msgid ""
msgstr ""
"Project-Id-Version: subversion 1.8\n"
"Report-Msgid-Bugs-To: dev@subversion.apache.org\n"
"POT-Creation-Date: 2013-10-19 21:47+0200\n"
"PO-Revision-Date: 2013-10-19 22:28+0200\n"
"Last-Translator: Subversion Developers <dev@subversion.apache.org>\n"
"Language-Team: Swedish <dev@subversion.apache.org>\n"
"Language: sv\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"
#. Constructing nice error messages for roots.
#. Build an SVN_ERR_FS_NOT_FOUND error, with a detailed error text,
#. for PATH in ROOT. ROOT is of type svn_fs_root_t *.
#: ../include/private/svn_fs_util.h:81
#, c-format
msgid "File not found: transaction '%s', path '%s'"
msgstr "Filen finns inte: transaktion \"%s\", sökväg \"%s\""
src/subversion/subversion/po/sv.po view on Meta::CPAN
#: ../svn/svn.c:180
msgid "read log message from file ARG"
msgstr "läs loggmeddelande från filen ARG"
#: ../svn/svn.c:182
msgid "give output suitable for concatenation"
msgstr "skapa utdata som kan slås ihop"
#: ../svn/svn.c:184
msgid "treat value as being in charset encoding ARG"
msgstr ""
"betrakta värdet som om det använder\n"
" teckenkodningen ARG"
#: ../svn/svn.c:185 ../svnadmin/svnadmin.c:214
#: ../svndumpfilter/svndumpfilter.c:1025 ../svnlook/svnlook.c:168
#: ../svnrdump/svnrdump.c:144 ../svnserve/svnserve.c:289
#: ../svnsync/svnsync.c:242 ../svnversion/svnversion.c:141
msgid "show program version information"
msgstr "visa programversionsinformation"