Browsing Bosnian translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions and Bosnian guidelines.
2124 of 24 results
2173.
Set the value of a property on files, dirs, or revisions.
usage: 1. propset PROPNAME PROPVAL PATH...
2. propset PROPNAME --revprop -r REV PROPVAL [TARGET]

1. Changes a versioned file or directory property in a working copy.
2. Changes an unversioned property on a repository revision.
(TARGET only determines which repository to access.)

The value may be provided with the --file option instead of PROPVAL.

Property names starting with 'svn:' are reserved. Subversion recognizes
the following special versioned properties on a file:
svn:keywords - Keywords to be expanded. Valid keywords are:
URL, HeadURL - The URL for the head version of the file.
Author, LastChangedBy - The last person to modify the file.
Date, LastChangedDate - The date/time the file was last modified.
Rev, Revision, - The last revision the file changed.
LastChangedRevision
Id - A compressed summary of the previous four.
Header - Similar to Id but includes the full URL.

Custom keywords can be defined with a format string separated from
the keyword name with '='. Valid format substitutions are:
%a - The author of the revision given by %r.
%b - The basename of the URL of the file.
%d - Short format of the date of the revision given by %r.
%D - Long format of the date of the revision given by %r.
%P - The file's path, relative to the repository root.
%r - The number of the revision which last changed the file.
%R - The URL to the root of the repository.
%u - The URL of the file.
%_ - A space (keyword definitions cannot contain a literal space).
%% - A literal '%'.
%H - Equivalent to %P%_%r%_%d%_%a.
%I - Equivalent to %b%_%r%_%d%_%a.
Example custom keyword definition: MyKeyword=%r%_%a%_%P
Once a custom keyword has been defined for a file, it can be used
within the file like any other keyword: $MyKeyword$

svn:executable - If present, make the file executable. Use
'svn propdel svn:executable PATH...' to clear.
svn:eol-style - One of 'native', 'LF', 'CR', 'CRLF'.
svn:mime-type - The mimetype of the file. Used to determine
whether to merge the file, and how to serve it from Apache.
A mimetype beginning with 'text/' (or an absent mimetype) is
treated as text. Anything else is treated as binary.
svn:needs-lock - If present, indicates that the file should be locked
before it is modified. Makes the working copy file read-only
when it is not locked. Use 'svn propdel svn:needs-lock PATH...'
to clear.

Subversion recognizes the following special versioned properties on a
directory:
svn:ignore - A list of file glob patterns to ignore, one per line.
svn:global-ignores - Like svn:ignore, but inheritable.
svn:externals - A list of module specifiers, one per line, in the
following format similar to the syntax of 'svn checkout':
[-r REV] URL[@PEG] LOCALPATH
Example:
http://example.com/repos/zig foo/bar
The LOCALPATH is relative to the directory having this property.
To pin the external to a known revision, specify the optional REV:
-r25 http://example.com/repos/zig foo/bar
To unambiguously identify an element at a path which may have been
subsequently deleted or renamed, specify the optional PEG revision:
-r25 http://example.com/repos/zig@42 foo/bar
The URL may be a full URL or a relative URL starting with one of:
../ to the parent directory of the extracted external
^/ to the repository root
/ to the server root
// to the URL scheme
Use of the following format is discouraged but is supported for
interoperability with Subversion 1.4 and earlier clients:
LOCALPATH [-r PEG] URL
The ambiguous format 'relative_path relative_path' is taken as
'relative_url relative_path' with peg revision support.
Lines starting with a '#' character are ignored.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
(no translation yet)
Located in ../svn/svn.c:1275
2180.
Print the status of working copy files and directories.
usage: status [PATH...]

With no args, print only locally modified items (no network access).
With -q, print only summary information about locally modified items.
With -u, add working revision and server out-of-date information.
With -v, print full revision information on every item.

The first seven columns in the output are each one character wide:
First column: Says if item was added, deleted, or otherwise changed
' ' no modifications
'A' Added
'C' Conflicted
'D' Deleted
'I' Ignored
'M' Modified
'R' Replaced
'X' an unversioned directory created by an externals definition
'?' item is not under version control
'!' item is missing (removed by non-svn command) or incomplete
'~' versioned item obstructed by some item of a different kind
Second column: Modifications of a file's or directory's properties
' ' no modifications
'C' Conflicted
'M' Modified
Third column: Whether the working copy is locked for writing by
another Subversion client modifying the working copy
' ' not locked for writing
'L' locked for writing
Fourth column: Scheduled commit will contain addition-with-history
' ' no history scheduled with commit
'+' history scheduled with commit
Fifth column: Whether the item is switched or a file external
' ' normal
'S' the item has a Switched URL relative to the parent
'X' a versioned file created by an eXternals definition
Sixth column: Whether the item is locked in repository for exclusive commit
(without -u)
' ' not locked by this working copy
'K' locked by this working copy, but lock might be stolen or broken
(with -u)
' ' not locked in repository, not locked by this working copy
'K' locked in repository, lock owned by this working copy
'O' locked in repository, lock owned by another working copy
'T' locked in repository, lock owned by this working copy was stolen
'B' not locked in repository, lock owned by this working copy is broken
Seventh column: Whether the item is the victim of a tree conflict
' ' normal
'C' tree-Conflicted
If the item is a tree conflict victim, an additional line is printed
after the item's status line, explaining the nature of the conflict.

The out-of-date information appears in the ninth column (with -u):
'*' a newer revision exists on the server
' ' the working copy is up to date

Remaining fields are variable width and delimited by spaces:
The working revision (with -u or -v; '-' if the item is copied)
The last committed revision and last committed author (with -v)
The working copy path is always the final field, so it can
include spaces.

The presence of a question mark ('?') where a working revision, last
committed revision, or last committed author was expected indicates
that the information is unknown or irrelevant given the state of the
item (for example, when the item is the result of a copy operation).
The question mark serves as a visual placeholder to facilitate parsing.

Example output:
svn status wc
M wc/bar.c
A + wc/qax.c

svn status -u wc
M 965 wc/bar.c
* 965 wc/foo.c
A + - wc/qax.c
Status against revision: 981

svn status --show-updates --verbose wc
M 965 938 kfogel wc/bar.c
* 965 922 sussman wc/foo.c
A + - 687 joe wc/qax.c
965 687 joe wc/zig.c
Status against revision: 981

svn status
M wc/bar.c
! C wc/qaz.c
> local missing, incoming edit upon update
D wc/qax.c
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
(no translation yet)
Located in ../svn/svn.c:1419
2299.
usage: svnadmin setrevprop REPOS_PATH -r REVISION NAME FILE

Set the property NAME on revision REVISION to the contents of FILE. Use
--use-pre-revprop-change-hook/--use-post-revprop-change-hook to trigger
the revision property-related hooks (for example, if you want an email
notification sent from your post-revprop-change hook).

NOTE: Revision properties are not versioned, so this command will
overwrite the previous value of the property.
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
(no translation yet)
Located in ../svnadmin/main.c:437
2568.
usage: svnversion [OPTIONS] [WC_PATH [TRAIL_URL]]

Produce a compact version identifier for the working copy path
WC_PATH. TRAIL_URL is the trailing portion of the URL used to
determine if WC_PATH itself is switched (detection of switches
within WC_PATH does not rely on TRAIL_URL). The version identifier
is written to standard output. For example:

$ svnversion . /repos/svn/trunk
4168

The version identifier will be a single number if the working
copy is single revision, unmodified, not switched and with
a URL that matches the TRAIL_URL argument. If the working
copy is unusual the version identifier will be more complex:

4123:4168 mixed revision working copy
4168M modified working copy
4123S switched working copy
4123P partial working copy, from a sparse checkout
4123:4168MS mixed revision, modified, switched working copy

If WC_PATH is an unversioned path, the program will output
'Unversioned directory' or 'Unversioned file'. If WC_PATH is
an added or copied or moved path, the program will output
'Uncommitted local addition, copy or move'.

If invoked without arguments WC_PATH will be the current directory.

Valid options:
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
(no translation yet)
Located in ../svnversion/svnversion.c:61
2124 of 24 results

This translation is managed by Ubuntu Bosnia and Herzegovina translators, assigned by Ubuntu Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: Ajdin Mehic, Amar Jašarević, Amel Đilović, Ehlimana Krupalija, Ilma Kulovac, Jasmin Čebo, Medina Mališević, Mustafa Mahmutovic, Nejra Kulovic, Samir Ribić, amar isakovic.