0,0 → 1,53889 |
<?xml version="1.0" encoding="utf-8"?> |
<!DOCTYPE TS> |
<TS version="2.0" language="da_DK"> |
<context> |
<name></name> |
<message> |
<source>getColorNames() -> list |
|
Returns a list containing the names of all defined colors in the document. |
If no document is open, returns a list of the default document colors. |
</source> |
<translation type="obsolete">getColorNames() -> liste |
|
Returnerer en liste, som indeholder navnene på alle definerede farver i dokumentet. |
Hvis ikke et dokument er åbnet, så returneres en liste over standard dokumentets farver. |
</translation> |
</message> |
<message> |
<source>getColor("name") -> tuple |
|
Returns a tuple (C, M, Y, K) containing the four color components of the |
color "name" from the current document. If no document is open, returns |
the value of the named color from the default document colors. |
|
May raise NotFoundError if the named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">getColor("navn") -> tuple |
|
Returnerer en tuple (C, M, Y, K), som indeholder de fire farvekomponenter af |
farven "navn" fra det aktive dokument. Hvis ingen dokumenter er åbne, så |
returneres værdien af den navngivne farve fra standard dokumentets farver. |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>getColorAsRGB("name") -> tuple |
|
Returns a tuple (R,G,B) containing the three color components of the |
color "name" from the current document, converted to the RGB color |
space. If no document is open, returns the value of the named color |
from the default document colors. |
|
May raise NotFoundError if the named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">getColorAsRGB("navn") -> tuple |
|
Returnerer en tuple (R, G, B), som indeholder de tre farvekomponenter |
af farven "navn" fra det aktive dokument. Konverteret til RGB farve rum. |
Hvis ingen dokumenter er åben, så returneres værdien af den navngivne |
farve fra standard dokumentets farver. |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>changeColor("name", c, m, y, k) |
|
Changes the color "name" to the specified CMYK value. The color value is |
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
Color components should be in the range from 0 to 255. |
|
May raise NotFoundError if the named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">changeColor("navn", c, m, y, k) |
|
Ændrer farven "navn " til den angivne C, M, Y, K værdi. Farveværdien er |
defineret via fire komponenter c = Cyan, m = Magenta, y = Gul og k = sort. |
Farve-komponenterne skal være i området fra 0 til 255. |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>defineColor("name", c, m, y, k) |
|
Defines a new color "name". The color Value is defined via four components: |
c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
the range from 0 to 255. |
|
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">defineColor("navn", c, m, y, k) |
|
Definerer en ny farve "navn ". Farveværdien er defineret via fire komponenter: |
c = Cyan, m = Magenta, y = Gul og k = sort. Farve-komponenterne skal være |
i området fra 0 til 255. |
|
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>deleteColor("name", "replace") |
|
Deletes the color "name". Every occurence of that color is replaced by the |
color "replace". If not specified, "replace" defaults to the color |
"None" - transparent. |
|
deleteColor works on the default document colors if there is no document open. |
In that case, "replace", if specified, has no effect. |
|
May raise NotFoundError if a named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">deleteColor("navn", "erstat") |
|
Sletter farven "navn ". Enhver forekomst af denne farve er erstattet |
af farven "erstat". Hvis "erstat" ikke er angivet, så sættes farven til |
"NONE" - transparent. |
|
|
å |
å |
|
æ |
"er |
" |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>replaceColor("name", "replace") |
|
Every occurence of the color "name" is replaced by the color "replace". |
|
May raise NotFoundError if a named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">replaceColor("navn", "erstat") |
|
Enhver forekomst af farven "navn" bliver erstattet af farven "erstat". |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>newDocDialog() -> bool |
|
Displays the "New Document" dialog box. Creates a new document if the user |
accepts the settings. Does not create a document if the user presses cancel. |
Returns true if a new document was created. |
</source> |
<translation type="obsolete">newDocDialog() -> bool |
|
Viser "Ny dokument" dialog-boks. opretter et nyt dokument, hvis brugeren |
accepterer indstillingerne. Opretter ikke et dokument, hvis brugeren trykker på annullér. |
Returnerer "true" hvis der blev oprettet et nyt dokument. |
</translation> |
</message> |
<message> |
<source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
|
Shows a File Open dialog box with the caption "caption". Files are filtered |
with the filter string "filter". A default filename or file path can also |
supplied, leave this string empty when you don't want to use it. A value of |
True for haspreview enables a small preview widget in the FileSelect box. When |
the issave parameter is set to True the dialog acts like a "Save As" dialog |
otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
the dialog shows and returns only directories. The default for all of the |
optional parameters is False. |
|
The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
For example 'Images (*.png *.xpm *.jpg)'. |
|
Refer to the Qt-Documentation for QFileDialog for details on filters. |
|
Example: fileDialog('Open input', 'CSV files (*.csv)') |
Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
</source> |
<translation type="obsolete">fileDialog("overskrift", ["filter", "standardnavn" ,har-previsning, er-gem, er-mappe]) -> streng med fil-navn |
|
Viser en "Fil-åbn" dialog-boks med overskriften "overskrift". Filer er filtreret |
med filter-strengen "filter". Et standard fil-navn eller fil-sti kan også |
angives, lad denne streng være tom, når du ikke ønsker at bruge den. |
Hvis har-previsning er "TRUE" aktiveres et lille visningsvindue i fil-valg-boksen. |
Når er-gem værdien er sat til "True", så fungerer dialogboksen som en "Gem som" |
dialog, ellers fungerer den som en "Fil åbn" dialog. Når er-mappe værdien er |
"True", så viser og returnerer dialogboksen kun mapper. Standardværdien for |
alle de valgfri parametre er "False". |
|
Filteret, hvis specificeret, har formen 'kommentar (*.type *.type2 ...)'. |
For eksempel 'billeder' (*.png *.xpm *.jpg)'. |
|
Se Qt-dokumentationen over QFileDialog for detaljer om filtre. |
|
Eksempel: fileDialog('Åbn input', 'CSV filer (*.csv)') |
Eksempel: fileDialog('Gem report', standardnavn='report.txt', er-gem=True) |
</translation> |
</message> |
<message> |
<source>messageBox("caption", "message", |
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
|
Displays a message box with the title "caption", the message "message", and |
an icon "icon" and up to 3 buttons. By default no icon is used and a single |
button, OK, is displayed. Only the caption and message arguments are required, |
though setting an icon and appropriate button(s) is strongly |
recommended. The message text may contain simple HTML-like markup. |
|
Returns the number of the button the user pressed. Button numbers start |
at 1. |
|
For the icon and the button parameters there are predefined constants available |
with the same names as in the Qt Documentation. These are the BUTTON_* and |
ICON_* constants defined in the module. There are also two extra constants that |
can be binary-ORed with button constants: |
BUTTONOPT_DEFAULT Pressing enter presses this button. |
BUTTONOPT_ESCAPE Pressing escape presses this button. |
|
Usage examples: |
result = messageBox('Script failed', |
'This script only works when you have a text frame selected.', |
ICON_ERROR) |
result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
|
Defined button and icon constants: |
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
</source> |
<translation type="obsolete">messageBox("titel", "besked", |
ikon=ICON_NONE, knap1=BUTTON_OK|BUTTONOPT_DEFAULT, |
knap2=BUTTON_NONE, knap3=BUTTON_NONE) -> integer |
|
Viser en besked-boks med titlen "titel", meddelelsen "besked", og |
et ikon "ikon" og op til 3 knapper. Som standard bruges ingen ikoner og |
en enkel knap, OK, er vist. Kun titel og besked argumenterne er påkrævet, |
selvom det anbefales meget, at sætte et ikon og passende knap(per). |
Besked-teksten kan indeholde simple HTML-lignende formatering. |
|
Returnerer nummeret på den knap brugeren trykkede på. Knap-numre |
starter ved 1. |
|
For ikon og knap-parametre er der predefinerede konstanter tilgængelige |
med de samme navne som i Qt Dokumentationen. Disse er BUTTON_* og |
ICON_* konstanterne defineret i modulet. Der er også to ekstra konstanter der |
kan binær-ORes med knap konstanter: |
BUTTONOPT_DEFAULT Tryk enter trykker denne knap. |
BUTTONOPT_ESCAPE Tryk escape trykker denne knap. |
|
Eksempler på brug: |
resultat = messageBox('Script fejlede', |
'Denne script fungerer kun, når der er markeret en tekst-ramme.', |
ICON_ERROR) |
resultat = messageBox('Abekatte!', 'Noget gik agurk! <i>Hvad er en abekat?</i>', |
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
|
Definerede knap og ikon konstanter: |
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
</translation> |
</message> |
<message> |
<source>valueDialog(caption, message [,defaultvalue]) -> string |
|
Shows the common 'Ask for string' dialog and returns its value as a string |
Parameters: window title, text in the window and optional 'default' value. |
|
Example: valueDialog('title', 'text in the window', 'optional') |
</source> |
<translation type="obsolete">valueDialog(titel, besked [,standardværdi]) -> streng |
|
Viser den almindelige 'spørg efter streng' dialog og returnerer dens værdi som en streng |
Parametre: vindue-titel, tekst i vinduet og en valgfri 'standard' værdi. |
|
Eksempel: valueDialog('titel', 'tekst i vinduet', 'valgfri') |
</translation> |
</message> |
<message> |
<source>newStyleDialog() -> string |
|
Shows 'Create new paragraph style' dialog. Function returns real |
style name or None when user cancels the dialog. |
</source> |
<translation type="obsolete">newStyleDialog() -> streng |
|
Viser 'Opret ny afsnits-typografi' vindue. Funktionen returnerer det rigtige |
typografi navn eller Intet når bruger annullerer vinduet. |
</translation> |
</message> |
<message> |
<source>newDocument(size, margins, orientation, firstPageNumber, |
unit, pagesType, firstPageOrder, numPages) -> bool |
|
Creates a new document and returns true if successful. The parameters have the |
following meaning: |
|
size = A tuple (width, height) describing the size of the document. You can |
use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
|
firstPageNumer = is the number of the first page in the document used for |
pagenumbering. While you'll usually want 1, it's useful to have higher |
numbers if you're creating a document in several parts. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
PAGE_4 is 4-fold. |
|
firstPageOrder = What is position of first page in the document. |
Indexed from 0 (0 = first). |
|
numPage = Number of pages to be created. |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
PAGE_4, 3, 1) |
|
May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
</source> |
<translation type="obsolete">newDocument(størrelse, margener, retning, førsteSideNummer, |
måle-enhed, sideType, førsteSideOrden, antalSider) -> bool |
|
Opretter et Nyt dokument og returnerer "true" hvis det lykkedes. Parametrene har |
følgende betydning: |
|
størrelse = A tuple (bredde, højde) beskriver størrelsen af dokumentet. du kan |
bruge predefinerede constanter med navnet PAPER_<papir_type> f.eks. PAPER_A4 etc. |
|
margener = En tuple (venstre, højre, top, bund) beskriver documentets margener |
|
retning = sidens retning - constanter PORTRAIT, LANDSCAPE |
|
førsteSideNummer = er nummeret på den første side i dokumentet brugt for |
side-nummerering. Selvom værdien oftest er 1, så er der nogen gange brug for |
et højere nummer, hvis et dokument består af flere dele. |
|
måle-enhed: denne værdi sætter måle-enheden, som bruges i dokumentet. Brug en |
predefineret constant for dette, en af: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
sideType = En af de predefinerede constanter PAGE_n. PAGE_1 er enkeltside, |
PAGE_2 er for dobbeltsidet dokumenter, PAGE_3 er for 3 siders folder og |
PAGE_4 er 4-fold |
|
førsteSideOrden = Hvad er positionen af første side i dokumentet. |
Indeksering fra 0 (0 = første). |
|
antalSider = Antal sider som skal laves. |
|
Værdierne for bredde, højde og margener er udtrykt i den givne måle-enhed |
for dokumentet. PAPER_* constanter er udtrykt i punkter. Hvis dit dokument |
ikke er i punkter, så sørg for at tage højde for dette. |
|
eksempel: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
PAGE_4, 3, 1) |
|
Kan rejse ScribusError hvis førsteSideOrden er større end tilladt for sideType. |
</translation> |
</message> |
<message> |
<source>newDoc(size, margins, orientation, firstPageNumber, |
unit, facingPages, firstSideLeft) -> bool |
|
WARNING: Obsolete procedure! Use newDocument instead. |
|
Creates a new document and returns true if successful. The parameters have the |
following meaning: |
|
size = A tuple (width, height) describing the size of the document. You can |
use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
|
firstPageNumer = is the number of the first page in the document used for |
pagenumbering. While you'll usually want 1, it's useful to have higher |
numbers if you're creating a document in several parts. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
facingPages = FACINGPAGES, NOFACINGPAGES |
|
firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
FACINGPAGES, FIRSTPAGERIGHT) |
</source> |
<translation type="obsolete">newDoc(størrelse, margener, retning, førsteSideNummer, |
måle-enhed, modståendeSider, førsteSideVenstre) -> bool |
|
ADVARSEL: Forældet procedure! brug newDocument i stedet for. |
|
Opretter et Nyt dokument og returnerer "true" hvis det lykkedes. Parametrene har |
følgende betydning: |
|
størrelse = A tuple (bredde, højde) beskriver størrelsen af dokumentet. du kan |
bruge predefinerede constanter med navnet PAPER_<paper_type> f.eks. PAPER_A4 etc. |
|
margener = En tuple (venstre, højre, top, bund) beskriver documentets margener |
|
retning = sidens retning - constanter PORTRAIT, LANDSCAPE |
|
førsteSideNummer = er nummeret på den første side i dokumentet brugt for |
side-nummerering. Selvom værdien oftest er 1, så er der nogen gange brug for |
et højere nummer, når et dokument består af flere dele. |
|
enhed: denne værdi sætter måle-enheden, som bruges i dokumentet. Brug en |
predefineret constant for dette, en af: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
modståendeSider = FACINGPAGES, NOFACINGPAGES |
|
førsteSideVenstre = FIRSTPAGELEFT, FIRSTPAGERIGHT |
|
Værdierne for bredde, højde og margener er udtrykt i den givne måle-enhed |
for dokumentet. PAPER_* constanter er udtrykt i punkter. Hvis dit dokument |
ikke er i punkter, så sørg for at tage højde for dette. |
|
eksempel: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
FACINGPAGES, FIRSTPAGERIGHT)</translation> |
</message> |
<message> |
<source>closeDoc() |
|
Closes the current document without prompting to save. |
|
May throw NoDocOpenError if there is no document to close |
</source> |
<translation type="obsolete">closeDoc() |
|
Lukker det aktive dokument uden at spørge om det skal gemmes. |
|
Kan rejse NoDocOpenError hvis der ikke er noget dokument at lukke |
</translation> |
</message> |
<message> |
<source>haveDoc() -> bool |
|
Returns true if there is a document open. |
</source> |
<translation type="obsolete">haveDoc() -> bool |
|
Returnerer "true" hvis der er et åbent dokument. |
</translation> |
</message> |
<message> |
<source>openDoc("name") |
|
Opens the document "name". |
|
May raise ScribusError if the document could not be opened. |
</source> |
<translation type="obsolete">openDoc("navn") |
|
Åbner dokumentet "navn" |
|
Kan rejse ScribusError hvis dokumentet ikke kunne åbnes. |
</translation> |
</message> |
<message> |
<source>saveDoc() |
|
Saves the current document with its current name, returns true if successful. |
If the document has not already been saved, this may bring up an interactive |
save file dialog. |
|
If the save fails, there is currently no way to tell. |
</source> |
<translation type="obsolete">saveDoc("navn") |
|
Gemmer det aktive dokument med dets nuværende navn, returnerer "true" hvis |
det lykkedes. Hvis dokumentet ikke allerede har været gemt, så vil der komme |
en interaktiv "gem fil" dialog. |
|
Hvis "gem fil" fejler, er der ikke nogen måde at fortælle det på. |
</translation> |
</message> |
<message> |
<source>saveDocAs("name") |
|
Saves the current document under the new name "name" (which may be a full or |
relative path). |
|
May raise ScribusError if the save fails. |
</source> |
<translation type="obsolete">saveDocAs("navn") |
|
Gemmer det aktive dokument med det nye navn "navn" (som kan være en |
fuld eller relativ sti). |
|
Kan rejse ScribusError hvis gem fejler. |
</translation> |
</message> |
<message> |
<source>setInfo("author", "info", "description") -> bool |
|
Sets the document information. "Author", "Info", "Description" are |
strings. |
</source> |
<translation type="obsolete">setInfo("forfatter", "info", "beskrivelse") -> bool |
Sætter dokument-informationen. "forfatter", "info", "beskrivelse" er |
strenge. |
</translation> |
</message> |
<message> |
<source>setMargins(lr, rr, tr, br) |
|
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
margins are given in the measurement units of the document - see UNIT_<type> |
constants. |
</source> |
<translation type="obsolete">setMargins(lr, rr, tr, br) |
|
Sætter dokumentets margener, Venstre(lr), Højre(rr), Top(tr) og Bund(br) |
margener er angivet i dokumentets måle-enhed - se UNIT_<type> konstanter. |
</translation> |
</message> |
<message> |
<source>setMargins(lr, rr, tr, br) |
|
Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br) |
margins are given in the measurement units of the document - see UNIT_<type> |
constants. |
</source> |
<translation type="obsolete">setMargins(lr, rr, tr, br) |
|
Sætter dokumentets margener, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br) |
margener er angivet i dokumentets måle-enhed - se UNIT_<type> |
konstanter. |
</translation> |
</message> |
<message> |
<source>setUnit(type) |
|
Changes the measurement unit of the document. Possible values for "unit" are |
defined as constants UNIT_<type>. |
|
May raise ValueError if an invalid unit is passed. |
</source> |
<translation type="obsolete">setUnit(type) |
|
Ændrer dokumentets måle-enhed. Mulige værdier for "enhed" er |
defineret som konstanter UNIT_<type>. |
|
Kan rejse ValueError hvis en ugyldig type er angivet. |
</translation> |
</message> |
<message> |
<source>getUnit() -> integer (Scribus unit constant) |
|
Returns the measurement units of the document. The returned value will be one |
of the UNIT_* constants: |
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
</source> |
<translation type="obsolete">getUnit() -> integer (Scribus enheds konstant) |
|
Returnerer dokumentets måle-enhed. Den returnerede værdi vil være en |
af UNIT_* konstanterne: |
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
</translation> |
</message> |
<message> |
<source>loadStylesFromFile("filename") |
|
Loads paragraph styles from the Scribus document at "filename" into the |
current document. |
</source> |
<translation type="obsolete">loadStylesFromFile("filnavn") |
|
Indlæser afsnits-typografierne fra Scribus dokumentet "filnavn" |
ind i det aktive dokument. |
</translation> |
</message> |
<message> |
<source>setDocType(facingPages, firstPageLeft) |
|
Sets the document type. To get facing pages set the first parameter to |
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
a right page use FIRSTPAGERIGHT. |
</source> |
<translation type="obsolete">setDocType(modståendeSider, førsteSideVenstre) |
|
Sætter dokumentets type. For at få modstående sider, så sæt den første værdi |
til FACINGPAGES, for at deaktivere dette brug istedet NOFACINGPAGES. Hvis du ønsker |
at have den første side som venstre side, sæt da den anden værdi til FIRSTPAGELEFT, for |
en højre side som den første brug FIRSTPAGERIGHT. |
</translation> |
</message> |
<message> |
<source>closeMasterPage() |
|
Closes the currently active master page, if any, and returns editing |
to normal. Begin editing with editMasterPage(). |
</source> |
<translation type="obsolete">closeMasterPage() |
|
Lukker den aktive masterside, hvis der er nogen, og returnerer |
redigering til normal. Begynd redigering med editMasterPage(). |
</translation> |
</message> |
<message> |
<source>masterPageNames() |
|
Returns a list of the names of all master pages in the document. |
</source> |
<translation type="obsolete">masterPageNames() |
|
Returnerer en liste af navnene på alle mastersider i dokumentet. |
</translation> |
</message> |
<message> |
<source>editMasterPage(pageName) |
|
Enables master page editing and opens the named master page |
for editing. Finish editing with closeMasterPage(). |
</source> |
<translation type="obsolete">editMasterPage(sideNavn) |
|
Aktiverer redigering af masterside og åbner den navngivne masterside |
for redigering. Afslut redigering med closeMasterPage(). |
</translation> |
</message> |
<message> |
<source>createMasterPage(pageName) |
|
Creates a new master page named pageName and opens it for |
editing. |
</source> |
<translation type="obsolete">createMasterPage(sideNavn) |
|
Opretter en ny masterside med navnet sideNavn og åbner den for |
redigering. |
</translation> |
</message> |
<message> |
<source>deleteMasterPage(pageName) |
|
Delete the named master page. |
</source> |
<translation type="obsolete">deleteMasterPage(sideNavn) |
|
Sletter den navngivne masterside. |
</translation> |
</message> |
<message> |
<source>getFillColor(["name"]) -> string |
|
Returns the name of the fill color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getFillColor(["navn"]) -> streng |
|
Returnerer navnet på fyld-farven i objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getFillTransparency(["name"]) -> float |
|
Returns the fill transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getFillTransparency(["navn"]) -> komma-tal |
|
Returnerer fyld gennemsigtigheden for objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getFillBlendmode(["name"]) -> integer |
|
Returns the fill blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getFillBlendmode(["navn"]) -> heltal |
|
Returnerer fyld blandindings-tilstanden af objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineColor(["name"]) -> string |
|
Returns the name of the line color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getLineColor(["navn"]) -> streng |
|
Returnerer navnet på linie-farven på objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineTransparency(["name"]) -> float |
|
Returns the line transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getLineTransparency(["navn"]) -> komma-tal |
|
Returnerer liniens gennemsigtighed af objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineBlendmode(["name"]) -> integer |
|
Returns the line blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getLineBlendmode(["navn"]) -> heltal |
|
Returnerer linie blandindings-tilstanden af objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineWidth(["name"]) -> integer |
|
Returns the line width of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getLineWidth(["navn"]) -> integer |
|
Returnerer linie-bredde på på objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineShade(["name"]) -> integer |
|
Returns the shading value of the line color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getLineShade(["navn"]) -> integer |
|
Returnerer værdien for liniens farvemætning på objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineJoin(["name"]) -> integer (see constants) |
|
Returns the line join style of the object "name". If "name" is not given |
the currently selected item is used. The join types are: |
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
</source> |
<translation type="obsolete">getLineJoin(["navn"]) -> integer (se kontanter) |
|
Returnerer typen af liniesamlingen på objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. Samlingstyperne er |
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
</translation> |
</message> |
<message> |
<source>getLineEnd(["name"]) -> integer (see constants) |
|
Returns the line cap style of the object "name". If "name" is not given the |
currently selected item is used. The cap types are: |
CAP_FLAT, CAP_ROUND, CAP_SQUARE |
</source> |
<translation type="obsolete">getLineEnd(["navn"]) -> integer (se kontanter) |
|
Returnerer typen af linieenden på objektet "navn" Hvis "navn" |
ikke angives, så bruges det markerede element. Endetyperne er |
CAP_FLAT, CAP_ROUND, CAP_SQUARE |
</translation> |
</message> |
<message> |
<source>getLineStyle(["name"]) -> integer (see constants) |
|
Returns the line style of the object "name". If "name" is not given the |
currently selected item is used. Line style constants are: |
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
</source> |
<translation type="obsolete">getLineStyle(["navn"]) -> integer (se kontanter) |
|
Returnerer liniestilen på objektet "navn" Hvis "navn" ikke |
angives, så bruges det markerede element. Liniestilene er |
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
</translation> |
</message> |
<message> |
<source>getFillShade(["name"]) -> integer |
|
Returns the shading value of the fill color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getFillShade(["navn"]) -> integer |
|
Returnerer farvemætningen på fyld-farven på objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getCornerRadius(["name"]) -> integer |
|
Returns the corner radius of the object "name". The radius is |
expressed in points. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">getCornerRadius(["navn"]) -> integer |
|
Returnerer radius på hjørnerne på objektet "navn". Radius er |
udtrykt i punkter. Hvis "navn" ikke angives, så bruges |
det markerede element. |
</translation> |
</message> |
<message> |
<source>getImageScale(["name"]) -> (x,y) |
|
Returns a (x, y) tuple containing the scaling values of the image frame |
"name". If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getImageScale(["navn"]) -> (x,y) |
|
Returnerer en (x, y) tuple, som indeholder skaleringsværdierne for billedrammen |
"navn". Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getImageName(["name"]) -> string |
|
Returns the filename for the image in the image frame. If "name" is not |
given the currently selected item is used. |
</source> |
<translation type="obsolete">getImageName(["navn"]) -> streng |
|
Returnerer filnavnet for billedet i billed-rammen "navn". Hvis |
"navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getPosition(["name"]) -> (x,y) |
|
Returns a (x, y) tuple with the position of the object "name". |
If "name" is not given the currently selected item is used. |
The position is expressed in the actual measurement unit of the document |
- see UNIT_<type> for reference. |
</source> |
<translation type="obsolete">getPosition(["navn"]) -> (x,y) |
|
Returnerer en (x, y) tuple med positionen på objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
Positionen er udtrykt i den aktuelle måle-enhed for dokumentet |
- se UNIT_<type> for reference. |
</translation> |
</message> |
<message> |
<source>getSize(["name"]) -> (width,height) |
|
Returns a (width, height) tuple with the size of the object "name". |
If "name" is not given the currently selected item is used. The size is |
expressed in the current measurement unit of the document - see UNIT_<type> |
for reference. |
</source> |
<translation type="obsolete">getSize(["navn"]) -> (bredde,højde) |
|
Returnerer en (bredde, højde) tuple med størrelsen på objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. Størrelsen |
er udtrykt i den aktuelle måle-enhed for dokumentet - se UNIT_<type> |
for reference. |
</translation> |
</message> |
<message> |
<source>getRotation(["name"]) -> integer |
|
Returns the rotation of the object "name". The value is expressed in degrees, |
and clockwise is positive. If "name" is not given the currently selected item |
is used. |
</source> |
<translation type="obsolete">getRotation(["navn"]) -> integer |
|
Returnerer rotationen på objektet "navn". Værdien er udtrykt i grader, |
og med uret giver en positiv værdi. Hvis "navn" ikke angives, så bruges |
det markerede element. |
</translation> |
</message> |
<message> |
<source>getAllObjects() -> list |
|
Returns a list containing the names of all objects on the current page. |
</source> |
<translation type="obsolete">getAllObjects() -> liste |
|
Returnerer en liste, som indeholder navnene på alle objekter på den aktive side. |
</translation> |
</message> |
<message> |
<source>getPropertyCType(object, property, includesuper=True) |
|
Returns the name of the C type of `property' of `object'. See getProperty() |
for details of arguments. |
|
If `includesuper' is true, search inherited properties too. |
</source> |
<translation type="obsolete">getPropertyCType(objekt, egenskab, inkludérsuper=True) |
|
Returnerer navnet på `egenskab'ens C type i det givne `objekt'. Se getProperty() |
|
Hvis `inkludérsuper' er `TRUE', søges også nedarvede egenskaber. |
</translation> |
</message> |
<message> |
<source>getPropertyNames(object, includesuper=True) |
|
Return a list of property names supported by `object'. |
If `includesuper' is true, return properties supported |
by parent classes as well. |
</source> |
<translation type="obsolete">getPropertyNames(objekt, inkludérsuper=True) |
|
Returnerer en liste af egenskabs navne understøttet af `objekt'. |
Hvis `inkludérsuper' er `TRUE', returneres også navnene på egenskaber |
understøttet af forældreklassen. |
</translation> |
</message> |
<message> |
<source>getProperty(object, property) |
|
Return the value of the property `property' of the passed `object'. |
|
The `object' argument may be a string, in which case the named PageItem |
is searched for. It may also be a PyCObject, which may point to any |
C++ QObject instance. |
|
The `property' argument must be a string, and is the name of the property |
to look up on `object'. |
|
The return value varies depending on the type of the property. |
</source> |
<translation type="obsolete">getProperty(objekt, egenskab) |
|
Returnerer værdien af egenskab `egenskab' i det givne `objekt'. |
|
Argumentet `object' kan være en streng, og der vil da blive søgt efter det |
navngivne Sideelement. Det kan også være et PyObjekt, som kan pege på |
et hvilket som helst C++ QObjekt tilfælde. |
|
Argumentet `egenskab' skal være en streng, og er navnet på den egenskab |
der søges efter i `objekt'. |
|
Værdien der returneres er forskellig afhængig af egenskabens type. |
</translation> |
</message> |
<message> |
<source>setProperty(object, property, value) |
|
Set `property' of `object' to `value'. If `value' cannot be converted to a type |
compatible with the type of `property', an exception is raised. An exception may |
also be raised if the underlying setter fails. |
|
See getProperty() for more information. |
</source> |
<translation type="obsolete">setProperty(objekt, egenskab, værdi) |
|
Sætter `egenskab' af `objekt' til `værdi'. Hvis `værdi' ikke kan konverteres til en type |
der er forenelig med typen af `egenskab', vil en indsigelse blive rejst. En indsigelse |
kan også blive rejst, hvis den grundlæggende sætter mislykkes. |
|
Se getProperty() for mere information. |
</translation> |
</message> |
<message> |
<source>moveObject(dx, dy [, "name"]) |
|
Moves the object "name" by dx and dy relative to its current position. The |
distances are expressed in the current measurement unit of the document (see |
UNIT constants). If "name" is not given the currently selected item is used. |
If the object "name" belongs to a group, the whole group is moved. |
</source> |
<translation type="obsolete">moveObject(dx, dy [, "navn"]) |
|
Flytter objektet "navn" med dx og dy relativt til dets nuværende position. |
Afstanden er udtrykt i dokumentets nuværende måle-enhed (se UNIT |
konstanter). Hvis "navn" ikke angives, så bruges det aktive element. |
Hvis "navn" hører til en gruppe, så flyttes hele gruppen. |
</translation> |
</message> |
<message> |
<source>moveObjectAbs(x, y [, "name"]) |
|
Moves the object "name" to a new location. The coordinates are expressed in |
the current measurement unit of the document (see UNIT constants). If "name" |
is not given the currently selected item is used. If the object "name" |
belongs to a group, the whole group is moved. |
</source> |
<translation type="obsolete">moveObjectAbs(x, y [,"navn"]) |
|
Flytter objektet "navn" til en ny placering. Koordinaterne er udtrykt i den |
aktuelle måle-enhed for dokumentet - (se UNIT konstanter). Hvis "navn" |
ikke angives, så bruges det markerede element. Hvis objektet "navn" |
hører til en gruppe, så flyttes hele gruppen. |
</translation> |
</message> |
<message> |
<source>rotateObject(rot [, "name"]) |
|
Rotates the object "name" by "rot" degrees relatively. The object is |
rotated by the vertex that is currently selected as the rotation point - by |
default, the top left vertex at zero rotation. Positive values mean counter |
clockwise rotation when the default rotation point is used. If "name" is not |
given the currently selected item is used. |
</source> |
<translation type="obsolete">rotateObject(rot [, "navn"]) |
|
Roterer objektet "navn" med "rot" grader relativt. Objektet er roteret |
omkring den spids, som er valgt som omdrejningspunkt - standard er |
det øverste venstre ved nul rotation. Positive værdier angiver drejning |
mod uret, når standard omdrejnings-punktet bruges. Hvis "navn" ikke |
angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>rotateObjectAbs(rot [, "name"]) |
|
Sets the rotation of the object "name" to "rot". Positive values |
mean counter clockwise rotation. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">rotateObjectAbs(rot [, "navn"]) |
|
Sætter rotationen af objektet "navn" til "rot". Positive værdier |
angiver drejning mod uret. Hvis "navn" ikke angives, så bruges |
det markerede element. |
</translation> |
</message> |
<message> |
<source>sizeObject(width, height [, "name"]) |
|
Resizes the object "name" to the given width and height. If "name" |
is not given the currently selected item is used. |
</source> |
<translation type="obsolete">sizeObject(bredde, højde [, "navn"]) |
|
Ændrer størrelsen på objektet "navn" til den givne bredde og højde. |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getSelectedObject([nr]) -> string |
|
Returns the name of the selected object. "nr" if given indicates the number |
of the selected object, e.g. 0 means the first selected object, 1 means the |
second selected Object and so on. |
</source> |
<translation type="obsolete">getSelectedObject([nr]) -> streng |
|
Returnerer navnet på det markerede objekt. Hvis "nr" angives, så indikerer |
det nummeret på det markerede objekt, f.eks. betyder 0 det første markerede |
objekt, 1 betyder det andet markerede objekt o.s.v. |
</translation> |
</message> |
<message> |
<source>selectionCount() -> integer |
|
Returns the number of selected objects. |
</source> |
<translation type="obsolete">selectionCount() -> integer |
|
Returneret antallet af markerede objekter. |
</translation> |
</message> |
<message> |
<source>selectObject("name") |
|
Selects the object with the given "name". |
</source> |
<translation type="obsolete">selectObject("navn") |
|
Marker objekt med det givne "navn". |
</translation> |
</message> |
<message> |
<source>deselectAll() |
|
Deselects all objects in the whole document. |
</source> |
<translation type="obsolete">deselectAll() |
|
Fjerner alle markeringer i hele dokumentet. |
</translation> |
</message> |
<message> |
<source>groupObjects(list) |
|
Groups the objects named in "list" together. "list" must contain the names |
of the objects to be grouped. If "list" is not given the currently selected |
items are used. |
</source> |
<translation type="obsolete">groupObjects(liste) |
|
Opretter en gruppe af alle objekter der er nævnt i "liste". "liste" skal indeholde |
navnene på de objekter, som skal laves til en gruppe. Hvis "liste" ikke angives, |
så bruges de markerede elementer. |
</translation> |
</message> |
<message> |
<source>unGroupObjects("name") |
|
Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
<translation type="obsolete">unGroupObjects("navn") |
|
Adskiller gruppen, som objektet "navn" hører til. Hvis "navn" ikke angives, |
så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>scaleGroup(factor [,"name"]) |
|
Scales the group the object "name" belongs to. Values greater than 1 enlarge |
the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
scales the group to 50 % of its original size, a value of 1.5 scales the group |
to 150 % of its original size. The value for "factor" must be greater than |
0. If "name" is not given the currently selected item is used. |
|
May raise ValueError if an invalid scale factor is passed. |
</source> |
<translation type="obsolete">scaleGroup(faktor [,"navn"]) |
|
Skalerer gruppen, som objekter "navn" hører til. Værdier større en 1 forstørrer |
gruppen, værdier mindre end 1 laver gruppen mindre, f.eks. en værdi på 0.5 |
skalerer gruppen til 50 % af dens originale størrelse, en værdi på 1.5 skalerer |
gruppen til 150 % af dens originale størrelse. Værdien for "faktor" skal være |
større end 0. Hvis "navn" ikke angives, så bruges det markerede element. |
|
kan rejse ValueError, hvis en ugyldig skalerings-faktor er angivet. |
</translation> |
</message> |
<message> |
<source>loadImage("filename" [, "name"]) |
|
Loads the picture "picture" into the image frame "name". If "name" is |
not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation type="obsolete">loadImage("filnavn", "navn") |
|
Indlæser billedet "filnavn" ind i billed-rammen "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
|
Kan rejse WrongFrameTypeError, hvis målrammen ikke er en billed-ramme |
</translation> |
</message> |
<message> |
<source>scaleImage(x, y [, "name"]) |
|
Sets the scaling factors of the picture in the image frame "name". |
If "name" is not given the currently selected item is used. A number of 1 |
means 100 %. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation type="obsolete">scaleImage(x, y [, "navn"]) |
|
Sætter Skalerings-faktorerne for billedet i billed-rammen "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
Værdien 1 betyder 100 %. |
|
kan rejse WrongFrameTypeError, hvis mål-rammen ikke er en billedramme |
</translation> |
</message> |
<message> |
<source>lockObject(["name"]) -> bool |
|
Locks the object "name" if it's unlocked or unlock it if it's locked. |
If "name" is not given the currently selected item is used. Returns true |
if locked. |
</source> |
<translation type="obsolete">lockObject(["navn"]) -> bool |
|
Låser objektet "navn" hvis det er ulåst og låser det op hvis det er låst. |
Hvis "navn" ikke angives, så bruges det markerede element. |
Returnerer "true" hvis objektet er låst. |
</translation> |
</message> |
<message> |
<source>isLocked(["name"]) -> bool |
|
Returns true if is the object "name" locked. If "name" is not given the |
currently selected item is used. |
</source> |
<translation type="obsolete">isLocked(["navn"]) -> bool |
|
Returnerer "true" hvis objektet "navn" er låst. Hvis "navn" ikke angives, |
så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
|
Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
Both `scaletoframe' and `proportional' are boolean. |
|
May raise WrongFrameTypeError. |
</source> |
<translation type="obsolete">setScaleImageToFrame(skalertilramme, proportional=None, name=<markering>) |
|
Sætter skalér til ramme på den markerede eller speciferede billed-ramme til `scaletoframe'. |
Hvis proportional er specificeret, så sættes fast bredde/højde forholdet til `proportionelt'. |
Både `skalertilramme' og `proportional' er boolsk. |
|
Kan rejse WrongFrameTypeError. |
</translation> |
</message> |
<message> |
<source>setRedraw(bool) |
|
Disables page redraw when bool = False, otherwise redrawing is enabled. |
This change will persist even after the script exits, so make sure to call |
setRedraw(True) in a finally: clause at the top level of your script. |
</source> |
<translation type="obsolete">setRedraw(bool) |
|
Forhindrer gentegning af siden når bool="false", ellers er gentegning aktiveret. |
Denne ændring vil holde selv efter scriptet afslutter, så vær sikker på at |
kalde setredraw(True) i slutningen: Forbeholdt topniveau af dit script. |
</translation> |
</message> |
<message> |
<source>getFontNames() -> list |
|
Returns a list with the names of all available fonts. |
</source> |
<translation type="obsolete">getFontNames() -> liste |
|
Returnerer en liste med navnene på alle tilgængelige fonte. |
</translation> |
</message> |
<message> |
<source>getXFontNames() -> list of tuples |
|
Returns a larger font info. It's a list of the tuples with: |
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
</source> |
<translation type="obsolete">getXFontNames() -> liste af tupler |
|
Returner større mængde font-info. Det er en liste af tuplerne med: |
[ (Scribus navn, Familie, Rigtige navn, substituere (1|0), indlejr PS (1|0), font-fil), (...), ... ] |
</translation> |
</message> |
<message> |
<source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
|
Creates an image preview of font "name" with given text "sample" and size. |
If "filename" is not "", image is saved into "filename". Otherwise |
image data is returned as a string. The optional "format" argument |
specifies the image format to generate, and supports any format allowed |
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
|
May raise NotFoundError if the specified font can't be found. |
May raise ValueError if an empty sample or filename is passed. |
</source> |
<translation type="obsolete">renderFont("navn", "filenavn", "eksempel", størrelse, format="PPM") -> bool |
|
Laver en billed-visning af fonten "navn" med teksten "eksempel" og størrelse. |
Hvis "filnavn" ikke er "", så bliver billedet gemt i "filnavn". Ellers returneres |
billed-data som en streng. Det valgfri "format" argument specificerer billed-formatet, |
der skal genereres, og støtter de formater, som er tilladt af QPixmap.save(). |
Almindelige formater er PPM, JPEG, PNG og XPM. |
|
Kan rejse NotFoundError hvis den angivne font ikke findes. |
Kan rejse ValueError hvis "eksempel" eller "filnavn" er tomt. |
</translation> |
</message> |
<message> |
<source>getLayers() -> list |
|
Returns a list with the names of all defined layers. |
</source> |
<translation type="obsolete">getLayers() -> liste |
|
Returnerer en liste med navnene på alle definerede lag. |
</translation> |
</message> |
<message> |
<source>setActiveLayer("name") |
|
Sets the active layer to the layer named "name". |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setActiveLayer("navn") |
|
Sætter laget "navn" som det aktive lag. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>getActiveLayer() -> string |
|
Returns the name of the current active layer. |
</source> |
<translation type="obsolete">getActiveLayer() -> streng |
|
Returnerer navnet på det aktive lag. |
</translation> |
</message> |
<message> |
<source>sentToLayer("layer" [, "name"]) |
|
Sends the object "name" to the layer "layer". The layer must exist. |
If "name" is not given the currently selected item is used. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">sentToLayer("lag" [, "navn"]) |
|
Sender objektet "navn" til laget "lag". Laget skal eksistere. |
Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>setLayerVisible("layer", visible) |
|
Sets the layer "layer" to be visible or not. If is the visible set to false |
the layer is invisible. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerVisible("lag", synlig) |
|
Sætter laget "lag" til at være synligt eller usynligt. Hvis "synlig" sættes til |
"False", så er laget usynligt. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>setLayerPrintable("layer", printable) |
|
Sets the layer "layer" to be printable or not. If is the |
printable set to false the layer won't be printed. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerPrintable("lag", printbar) |
|
Sætter laget "lag" til at kunne udskrives eller ej. Hvis |
"printbar" sættes til "False", så bliver laget ikke udskrivet. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>setLayerLocked("layer", locked) |
|
Sets the layer "layer" to be locked or not. If locked is set to |
true the layer will be locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerLocked("lag", låst) |
|
Sætter laget "lag" til at være låst eller ej. Hvis låst |
sættes til "true" vil laget være låst. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>setLayerOutlined("layer", outline) |
|
Sets the layer "layer" to be locked or not. If outline is set to |
true the layer will be displayed outlined. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerOutlined("lag", omrids) |
|
Sætter laget "lag" til at blive vist som omrids eller ej. Hvis omrids |
er sat til "true" vil laget blive vist som omrids. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>setLayerFlow("layer", flow) |
|
Sets the layers "layer" flowcontrol to flow. If flow is set to |
true text in layers above this one will flow around objects on this layer. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerFlow("lag", flyd) |
|
sætter laget "lag's" flydningskontrol til flyd. Hvis flyd sættes til "true", |
vil tekst i lag over dette flyde rundt om objekter i dette lag. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>setLayerBlendmode("layer", blend) |
|
Sets the layers "layer" blendmode to blend. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerBlendmode("lag", blanding) |
|
Sætter laget "lag's" blandings-tilstand til blanding. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>setLayerTransparency("layer", trans) |
|
Sets the layers "layer" transparency to trans. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerTransparency("lag", trans) |
|
Sætter laget "lag's" gennemsigtighed til trans. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>isLayerVisible("layer") -> bool |
|
Returns whether the layer "layer" is visible or not, a value of True means |
that the layer "layer" is visible, a value of False means that the layer |
"layer" is invisible. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerVisible("lag") -> bool |
|
Returnerer hvorvidt laget "lag" er synligt eller ej, værdien "True" |
betyder, at laget "lag" er synligt, værdien "False" betyder, at laget |
"lag" er usynligt. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>isLayerPrintable("layer") -> bool |
|
Returns whether the layer "layer" is printable or not, a value of True means |
that the layer "layer" can be printed, a value of False means that printing |
the layer "layer" is disabled. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerPrintable("lag") -> bool |
|
Returnerer hvorvidt laget "lag" kan udskrives eller ej, værdien "True" |
betyder, at laget "lag" kan udskrives, værdien "False" betyder, at laget |
"lag" ikke kan udskrives. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>isLayerLocked("layer") -> bool |
|
Returns whether the layer "layer" is locked or not, a value of True means |
that the layer "layer" is editable, a value of False means that the layer |
"layer" is locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerLocked("lag") -> bool |
|
Returnerer hvorvidt laget "lag" er låst eller ej, værdien "true" betyder |
at laget "lag" er redigerbart, værdien "false" betyder at laget "lag" er låst. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>isLayerOutlined("layer") -> bool |
|
Returns whether the layer "layer" is outlined or not, a value of True means |
that the layer "layer" is outlined, a value of False means that the layer |
"layer" is normal. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerOutlined("lag") -> bool |
|
Returnerer hvorvidt laget "lag" er vist som omrids eller ej, værdien "true" betyder |
at laget "lag" er vist som omrids, værdien "false" betyder at laget "lag" er normalt. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>isLayerFlow("layer") -> bool |
|
Returns whether text flows around objects on layer "layer", a value of True means |
that text flows around, a value of False means that the text does not flow around. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerFlow("lag") -> bool |
|
Returnerer hvorvidt tekst flyder omkring objekter på laget "lag", Værdien "true" betyder, |
at tekst flyder omkring objekter, værdien "false" betyder, at tekst ikke flyder omkring objekter |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>getLayerBlendmode("layer") -> int |
|
Returns the "layer" layer blendmode, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">getLayerBlendmode("lag") -> heltal |
|
Returnerer laget "lag's" blandings-tilstand. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>getLayerTransparency("layer") -> float |
|
Returns the "layer" layer transparency, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">getLayerTransparency("lag") -> komma-tal |
|
Returnerer laget "lag's" gennemsigtighed |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>deleteLayer("layer") |
|
Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
exists or if it's the only layer in the document. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">deleteLayer("lag") |
|
Sletter laget med navnet "lag". Der sker ingen ting hvis laget ikke |
eksisterer eller hvis det er det eneste lag i dokumentet. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>createLayer(layer) |
|
Creates a new layer with the name "name". |
|
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">createLayer("lag") |
|
Opretter et nyt lag med navnet "lag". |
|
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>getGuiLanguage() -> string |
|
Returns a string with the -lang value. |
</source> |
<translation type="obsolete">getGuiLanguage() -> streng |
|
Returnerer en streng med -lang værdien. |
</translation> |
</message> |
<message> |
<source>moveSelectionToFront() |
|
Moves current selection to front. |
</source> |
<translation type="obsolete">moveSelectionToFront() |
|
Flytter det markerede forrest. |
</translation> |
</message> |
<message> |
<source>moveSelectionToFront() |
|
Moves current selection to back. |
</source> |
<translation type="obsolete">moveSelectionToFront() |
|
Flytter det markerede bagerst. |
</translation> |
</message> |
<message> |
<source>createRect(x, y, width, height, ["name"]) -> string |
|
Creates a new rectangle on the current page and returns its name. The |
coordinates are given in the current measurement units of the document |
(see UNIT constants). "name" should be a unique identifier for the object |
because you need this name to reference that object in future. If "name" |
is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation type="obsolete">createRect(x, y, bredde, højde, ["navn"]) -> streng |
|
Opretter en ny rectangle på den aktive side og returnerer dens navn. |
Koordinaterne er givet i dokumentets nuværende måle-enhed (se |
UNIT konstanter). "navn" skal være et unikt navn, fordi du behøver |
dette navn for at kunne referere til dette objekt senere. Hvis "navn" |
ikke angives, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede findes. |
</translation> |
</message> |
<message> |
<source>createEllipse(x, y, width, height, ["name"]) -> string |
|
Creates a new ellipse on the current page and returns its name. |
The coordinates are given in the current measurement units of the document |
(see UNIT constants). "name" should be a unique identifier for the object |
because you need this name for further referencing of that object. If "name" |
is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation type="obsolete">createEllipse(x, y, bredde, højde, ["navn"]) -> streng |
|
Opretter en ny ellipse på den aktive side og returnerer dens navn. |
Koordinaterne er givet i dokumentets nuværende måle-enhed (se |
UNIT konstanter). "navn" skal være et unikt navn, fordi du behøver |
dette navn for at kunne referere til dette objekt senere. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
</translation> |
</message> |
<message> |
<source>createImage(x, y, width, height, ["name"]) -> string |
|
Creates a new picture frame on the current page and returns its name. The |
coordinates are given in the current measurement units of the document. |
"name" should be a unique identifier for the object because you need this |
name for further access to that object. If "name" is not given Scribus will |
create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation type="obsolete">createImage(x, y, bredde, højde, ["navn"]) -> streng |
|
Opretter en ny billed-ramme på den aktive side og returnerer dens navn. |
Koordinaterne er givet i dokumentets nuværende måle-enhed (se |
UNIT konstanter). "navn" skal være et unikt navn, fordi du behøver |
dette navn for at kunne referere til dette objekt senere. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
</translation> |
</message> |
<message> |
<source>createText(x, y, width, height, ["name"]) -> string |
|
Creates a new text frame on the actual page and returns its name. |
The coordinates are given in the actual measurement unit of the document (see |
UNIT constants). "name" should be a unique identifier for the object because |
you need this name for further referencing of that object. If "name" is not |
given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation type="obsolete">createText(x, y, bredde, højde, ["navn"]) -> streng |
|
Opretter en ny tekst-ramme på den aktive side og returnerer dens navn. |
Koordinaterne er givet i dokumentets nuværende måle-enhed (se |
UNIT konstanter). "navn" skal være et unikt navn, fordi du behøver |
dette navn for at kunne referere til dette objekt senere. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
</translation> |
</message> |
<message> |
<source>createLine(x1, y1, x2, y2, ["name"]) -> string |
|
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
its name. The coordinates are given in the current measurement unit of the |
document (see UNIT constants). "name" should be a unique identifier for the |
object because you need this name for further access to that object. If |
"name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation type="obsolete">createLine(x1, y1, x2, y2, ["navn"]) -> streng |
|
Opretter en ny linie fra punktet(x1, y1) til punktet(x2, y2) og returnerer |
dens navn. Koordinaterne er givet i dokumentets nuværende måle-enhed |
(se UNIT konstanter). "navn" skal være et unikt navn for objektet, fordi |
du behøver dette navn for yderligere adgang til dette objekt. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
</translation> |
</message> |
<message> |
<source>createPolyLine(list, ["name"]) -> string |
|
Creates a new polyline and returns its name. The points for the polyline are |
stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
The coordinates are given in the current measurement units of the document (see |
UNIT constants). "name" should be a unique identifier for the object because |
you need this name for further access to that object. If "name" is not given |
Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">createPolyLine(liste, ["navn"]) -> streng |
|
Opretter en ny poly-linie og returnerer dens navn. Poly-liniens punkter |
er placeret i listen "liste" i følgende orden: [x1, y1, x2, y2...xn, yn]. |
Koordinaterne er givet i dokumentets nuværende måle-enhed |
(se UNIT konstanter). "navn" skal være et unikt navn for objektet, fordi |
du behøver dette navn for yderligere adgang til dette objekt. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
Kan rejse ValueError hvis et utilstrækkeligt antal punkter er angivet eller hvis |
antallet af værdier ikke kan danne talpar uden noget tilovers. |
</translation> |
</message> |
<message> |
<source>createPolygon(list, ["name"]) -> string |
|
Creates a new polygon and returns its name. The points for the polygon are |
stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
At least three points are required. There is no need to repeat the first point |
to close the polygon. The polygon is automatically closed by connecting the |
first and the last point. The coordinates are given in the current measurement |
units of the document (see UNIT constants). "name" should be a unique |
identifier for the object because you need this name for further access to that |
object. If "name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">createPolygon(liste, ["navn"]) -> streng |
|
Opretter et nyt polygon og returnerer dets navn. Polygonets punkter |
er placeret i listen "liste" i følgende orden: [x1, y1, x2, y2...xn, yn]. |
Mindst tre punkter er påkrævet. Det er ikke nødvendigt at gentage det |
første punkt for at lukke polygonet. Polygonet er automatisk lukket ved at |
forbinde det første og det sidste punkt. Koordinaterne er givet i dokumentets |
nuværende måle-enhed (se UNIT konstanter). "navn" skal være et unikt navn |
for objektet, fordi du behøver dette navn for yderligere adgang til dette objekt. |
Hvis "navn" ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
Kan rejse ValueError hvis et utilstrækkeligt antal punkter er angivet eller hvis |
antallet af værdier ikke kan danne talpar uden noget tilovers. |
</translation> |
</message> |
<message> |
<source>createBezierLine(list, ["name"]) -> string |
|
Creates a new bezier curve and returns its name. The points for the bezier |
curve are stored in the list "list" in the following order: |
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
In the points list, x and y mean the x and y coordinates of the point and kx |
and ky meaning the control point for the curve. The coordinates are given in |
the current measurement units of the document (see UNIT constants). "name" |
should be a unique identifier for the object because you need this name for |
further access to that object. If "name" is not given Scribus will create one |
for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">createBezierLine(liste, ["navn"]) -> streng |
|
Opretter en ny bezier kurve og returnerer dens navn. Bezier kurvens |
punkter er placeret i listen "liste" i følgende orden: |
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn, yn, kxn, kyn]. |
I listen med punkter betyder x og y koordinaterne for punktet og kx og ky er |
kontrolpunktet for kurven. Koordinaterne er givet i dokumentets nuværende |
måle-enhed (se UNIT konstanter). "navn" skal være et unikt navn for objektet, |
fordi du behøver dette navn for yderligere adgang til dette objekt. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
Kan rejse ValueError hvis et utilstrækkeligt antal punkter er angivet eller |
hvis der er nogen tal tilovers. |
</translation> |
</message> |
<message> |
<source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
|
Creates a new pathText by merging the two objects "textbox" and |
"beziercurve" and returns its name. The coordinates are given in the current |
measurement unit of the document (see UNIT constants). "name" should be a |
unique identifier for the object because you need this name for further access |
to that object. If "name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NotFoundError if one or both of the named base object don't exist. |
</source> |
<translation type="obsolete">createPathText(x, y, "tekstboks", "bezierkurve", ["navn"]) -> streng |
|
Opretter en ny sti-tekst ved at forene de to objekter "tekstboks" og |
"bezierkurve" og returnerer dens navn. Koordinaterne er givet i dokumentets |
nuværende måle-enhed (se UNIT konstanter). "navn" skal være et unikt navn |
for objektet, fordi du behøver dette navn for yderligere adgang til dette objekt. |
Hvis "navn" ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
Kan rejse NotFoundError hvis en eller begge navngive basis-objekter ikke eksisterer. |
</translation> |
</message> |
<message> |
<source>deleteObject(["name"]) |
|
Deletes the item with the name "name". If "name" is not given the currently |
selected item is deleted. |
</source> |
<translation type="obsolete">deleteObject(["navn"]) |
|
Sletter elementet med navnet "navn". Hvis "navn" ikke angives, |
så slettes det markerede element. |
</translation> |
</message> |
<message> |
<source>textFlowMode("name" [, state]) |
|
Enables/disables "Text Flows Around Frame" feature for object "name". |
Called with parameters string name and optional int "state" (0 <= state <= 3). |
Setting "state" to 0 will disable text flow. |
Setting "state" to 1 will make text flow around object frame. |
Setting "state" to 2 will make text flow around bounding box. |
Setting "state" to 3 will make text flow around contour line. |
If "state" is not passed, text flow is toggled. |
</source> |
<translation type="obsolete">textFlowMode("navn" [, tilstand]) |
|
Aktiverer/deaktiverer "Tekst flyder omkring ramme" egenskab for objektet "navn". |
Kaldes med parametrene streng "navn" og valgfrit heltal "tilstand" (0 <= tilstand <= 3). |
"Tilstand" sat til 0 vil deaktivere tekst flyder omkring objekt. |
"Tilstand" sat til 1 vil få tekst til at flyde omkring objekt ramme. |
"Tilstand" sat til 2 vil få tekst til at flyde omkring indbindings boks. |
"Tilstand" sat til 3 vil få tekst til at flyde omkring omrids linien. |
Hvis "tilstand" ikke er angivet vil tilstanden blive slået til eller fra. |
</translation> |
</message> |
<message> |
<source>objectExists(["name"]) -> bool |
|
Test if an object with specified name really exists in the document. |
The optional parameter is the object name. When no object name is given, |
returns True if there is something selected. |
</source> |
<translation type="obsolete">objectExists(["navn"]) -> bool |
|
Undersøger om et objekt med navnet "navn" virkelig eksisterer i dokumentet. |
Den valgfri paramater er objekt navnet. Hvis "navn" ikke angives, så returneres |
"True" hvis et eller andet er markeret. |
</translation> |
</message> |
<message> |
<source>setStyle("style" [, "name"]) |
|
Apply the named "style" to the object named "name". If is no object name |
given, it's applied on the selected object. |
</source> |
<translation type="obsolete">setStyle("stil" [, "navn"]) |
|
Anvender stil på objektet "navn". Hvis "navn" ikke angives, så |
anvendes stilen på det markerede objekt. |
</translation> |
</message> |
<message> |
<source>getAllStyles() -> list |
|
Return a list of the names of all paragraph styles in the current document. |
</source> |
<translation type="obsolete">getAllStyles() -> liste |
|
Returnerer en liste af navne på alle afsnits-typografier i det aktive dokument. |
</translation> |
</message> |
<message> |
<source>duplicateObject(["name"]) -> string |
|
creates a Duplicate of the selected Object (or Selection Group). |
</source> |
<translation type="obsolete">duplicateObject(["navn"]) -> string |
|
Opretter en dublet at det valgte objekt (eller valgt gruppe). |
</translation> |
</message> |
<message> |
<source>newPage(where [,"masterpage"]) |
|
Creates a new page. If "where" is -1 the new Page is appended to the |
document, otherwise the new page is inserted before "where". Page numbers are |
counted from 1 upwards, no matter what the displayed first page number of your |
document is. The optional parameter "masterpage" specifies the name of the |
master page for the new page. |
|
May raise IndexError if the page number is out of range |
</source> |
<translation type="obsolete">newPage(hvor [,"masterside"]) |
|
Opretter en ny side. Hvis "hvor" er -1, så tilføjes den nye side i slutningen |
af dokumentet, ellers er den ny side indsat før "hvor". Side-numre er |
talt fra 1 og opefter, lige meget hvad nummer den første side har fået. |
Den valgfri parameter "masterside" angiver navnet på den master side, |
der skal bruges til den nye side. |
|
Kan rejse IndexError hvis side-nummer er uden for tilladte værdi |
</translation> |
</message> |
<message> |
<source>currentPage() -> integer |
|
Returns the number of the current working page. Page numbers are counted from 1 |
upwards, no matter what the displayed first page number of your document is. |
</source> |
<translation type="obsolete">currentPage() -> integer |
|
Returnerer nummeret på den aktive side. Sidenummeret er talt fra 1 og |
opefter, uanset hvilket sidenummer den første side har fået. |
</translation> |
</message> |
<message> |
<source>redrawAll() |
|
Redraws all pages. |
</source> |
<translation type="obsolete">redrawAll() |
|
Gentegner alle sider. |
</translation> |
</message> |
<message> |
<source>getPageType() -> integer |
|
Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
</source> |
<translation type="obsolete">Returnerer sidens type, 0 betyder venstre side, 1 er en midterside og 2 er en højre side |
</translation> |
</message> |
<message> |
<source>savePageAsEPS("name") |
|
Saves the current page as an EPS to the file "name". |
|
May raise ScribusError if the save failed. |
</source> |
<translation type="obsolete">savePageAsEPS("navn") |
|
Gemmer den aktive side som en EPS til filen "navn" |
|
Kan rejse ScribusError hvis "gem" fejlede. |
</translation> |
</message> |
<message> |
<source>deletePage(nr) |
|
Deletes the given page. Does nothing if the document contains only one page. |
Page numbers are counted from 1 upwards, no matter what the displayed first |
page number is. |
|
May raise IndexError if the page number is out of range |
</source> |
<translation type="obsolete">deletePage(nr) |
|
Sletter den angivne side. Ingen ting slettes, hvis dokumentet kun indeholder en side. |
Sidenummeret er talt fra 1 og opefter, uanset hvilket sidenummer den første side har fået. |
|
Kan rejse IndexError hvis sidenummeret er uden for område |
</translation> |
</message> |
<message> |
<source>gotoPage(nr) |
|
Moves to the page "nr" (that is, makes the current page "nr"). Note that |
gotoPage doesn't (currently) change the page the user's view is displaying, it |
just sets the page that script commands will operates on. |
|
May raise IndexError if the page number is out of range. |
</source> |
<translation type="obsolete">gotoPage(nr) |
|
Flytter til siden "nr" (d.v.s. laver siden "nr" til den aktive). bemærk at |
gotoPage ændrer ikke (lige nu) den side som brugeren ser, den vælger |
kun den side, som script-kommandoer opererer på. |
|
Kan rejse IndexError hvis sidenummeret er uden for område. |
</translation> |
</message> |
<message> |
<source>pageCount() -> integer |
|
Returns the number of pages in the document. |
</source> |
<translation type="obsolete">pageCount() -> integer |
|
Returnerer antal sider i dokumentet. |
</translation> |
</message> |
<message> |
<source>getHGuides() -> list |
|
Returns a list containing positions of the horizontal guides. Values are in the |
document's current units - see UNIT_<type> constants. |
</source> |
<translation type="obsolete">getHGuides() -> liste |
|
Returnerer en liste med positionerne for de horisontale hjælpelinier. Værdierne er |
angivet i den aktuelle måle-enhed for dokumentet - se UNIT_<type> konstanter. |
</translation> |
</message> |
<message> |
<source>setHGuides(list) |
|
Sets horizontal guides. Input parameter must be a list of guide positions |
measured in the current document units - see UNIT_<type> constants. |
|
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
setHGuides([90,250]) # replace current guides entirely |
</source> |
<translation type="obsolete">setHGuides(liste) |
|
Sætter horisontale hjælpelinier. Input-parameter skal være en liste med hlælpeliniernes |
placeringer angivet i den aktuelle måle-enhed for dokumentet - se UNIT_<type> konstanter. |
|
Eksempel: setHGuides(getHGuides() + [200.0, 210.0] # tilføjer ny hjælpelinie uden nogen mistet |
setHGuides([90,250]) # Erstatter nuværende hjælpelinier fuldstændigt |
</translation> |
</message> |
<message> |
<source>getVGuides() |
|
See getHGuides. |
</source> |
<translation type="obsolete">getVGuides() |
|
Se getHGuides. |
</translation> |
</message> |
<message> |
<source>setVGuides() |
|
See setHGuides. |
</source> |
<translation type="obsolete">setVGuides() |
|
Se setHGuides. |
</translation> |
</message> |
<message> |
<source>getPageSize() -> tuple |
|
Returns a tuple with page dimensions measured in the document's current units. |
See UNIT_<type> constants and getPageMargins() |
</source> |
<translation type="obsolete">getPageSize() -> tuple |
|
Returnerer en tuple med side-dimensioner målt i dokumentets aktuelle måle-enhed. |
Se UNIT_<type> konstanter og getPageMargins() |
</translation> |
</message> |
<message> |
<source>getPageItems() -> list |
|
Returns a list of tuples with items on the current page. The tuple is: |
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
means that object named 'Text1' is a text frame (type 4) and is the first at |
the page... |
</source> |
<translation type="obsolete">getPageItems() -> liste |
|
Returnerer en liste af tupler med elementer på den aktive side. Tuplen er: |
(navn, objekt-type, orden) F.eks. [('Tekst1', 4, 0), ('Billed1', 2, 1)]. |
Det betyder objektet 'Tekst1' er en tekst-ramme (type 4) og er den |
første på siden... |
</translation> |
</message> |
<message> |
<source>getPageMargins() |
|
Returns the page margins as a (top, left, right, bottom) tuple in the current |
units. See UNIT_<type> constants and getPageSize(). |
</source> |
<translation type="obsolete">getPageMargins() |
|
Returnerer side margener som en (top, venstre, højre, bund) tuple i dokumentets |
aktuelle måle-enhed. Se UNIT_<type> konstanter og getPageSize(). |
</translation> |
</message> |
<message> |
<source>importPage("fromDoc", (pageList), [create, imortwhere, importwherePage]) |
|
Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the "Page->Import" dropdown menu function. |
fromDoc: string; the filename of the document to import pages from |
pageList: tuple with page numbers of pages to import |
create: number; 0 to replace existing pages, 1 (default) to insert new pages |
importWhere: number; the page number (of the current document) at which import the pages |
importWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document |
</source> |
<translation type="obsolete">importPage("fraDok", (sideListe), [lav, importhvor, importhvorSide]) |
|
Importerer et antal sider (angivet som en tuple) fra et eksisterende dokument (filnavn skal angives). Denne funktion svarer til "Side>Import" rullemenu funktionen. |
fraDok: streng; filnavnet på dokumentet, hvorfra der skal importeres sider |
sideListe: tuple med sidenumre på sider der skal importeres |
lav: nummer; 0 for at erstatte ekisterende sider, 1 (standardværdi) for at indsætte nye sider |
importhvor: nummer; sidenummeret (i aktive dokument) hvortil siderne skal importeres |
importhvorSide: nummer; brugt hvis lav==1; 0 for at lave sider før valgte side; 1 for at lave sider efter valgte side; 2 (standardværdi) for at lave |
sider i slutningen af dokumentet |
</translation> |
</message> |
<message> |
<source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
|
Sets the gradient fill of the object "name" to type. Color descriptions are |
the same as for setFillColor() and setFillShade(). See the constants for |
available types (FILL_<type>). |
</source> |
<translation type="obsolete">setGradientFill(type, "farve1", mætning1, "farve2", mætning2, ["navn"]) |
|
Sætter gradient-fyld på objektet "navn" til type. Farvebeskrivelsen er |
den samme, som for setFillColor() og setFillShade(). Se konstanterne |
for mulige typer (FILL_<type>). |
</translation> |
</message> |
<message> |
<source>setFillColor("color", ["name"]) |
|
Sets the fill color of the object "name" to the color "color". "color" |
is the name of one of the defined colors. If "name" is not given the |
currently selected item is used. |
</source> |
<translation type="obsolete">setFillColor("farve", ["navn"]) |
|
Sætter fyld-farven på objektet "navn" til farven "farve". "farve" |
er navnet på en af de definerede farver. Hvis "navn" ikke angives, så |
bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setFillTransparency(transparency, ["name"]) |
|
Sets the fill transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setFillTransparency(gennemsigtighed, ["navn"]) |
|
Sætter fyld-gennemsigtigheden på objektet "navn" til gennemsigtighed |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setFillBlendmode(blendmode, ["name"]) |
|
Sets the fill blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setFillBlendmode(blandingstilstand, ["navn"]) |
|
Sætter fyld-blandings-tilstanden på objektet "navn" til blandingstilstand |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setLineColor("color", ["name"]) |
|
Sets the line color of the object "name" to the color "color". If "name" |
is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setLineColor("farve", ["navn"]) |
|
Sætter linie-farven på objektet "navn" til farven "farve". "farve" |
er navnet på en af de definerede farver. Hvis "navn" ikke angives, så |
bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setLineTransparency(transparency, ["name"]) |
|
Sets the line transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setLineTransparency(gennemsigtighed, ["navn"]) |
|
Sætter linie-gennemsigtigheden på objektet "navn" til gennemsigtighed |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setLineBlendmode(blendmode, ["name"]) |
|
Sets the line blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setLineBlendmode(blandingstilstand, ["navn"]) |
|
Sætter linieblandings-tilstanden på objektet "navn" til blandingstilstand |
Hvis "navn" ikke angives, så bruges det markerede element.</translation> |
</message> |
<message> |
<source>setLineWidth(width, ["name"]) |
|
Sets line width of the object "name" to "width". "width" must be in the |
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
given the currently selected item is used. |
|
May raise ValueError if the line width is out of bounds. |
</source> |
<translation type="obsolete">setLineWidth(bredde, ["navn"]) |
|
Sætter linie-bredden på objektet "navn" til "bredde". "bredde" skal være i |
området fra 0.0 til 12.0 inklusivt, og er angivet i punkter. Hvis "navn" ikke |
angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setLineShade(shade, ["name"]) |
|
Sets the shading of the line color of the object "name" to "shade". |
"shade" must be an integer value in the range from 0 (lightest) to 100 |
(full color intensity). If "name" is not given the currently selected item |
is used. |
|
May raise ValueError if the line shade is out of bounds. |
</source> |
<translation type="obsolete">setLineShade(farvemætning, ["navn"]) -> integer |
|
Sætter farvemætningen på linie-farven på objektet "navn" til "farvemætning". |
"farvemætning" skal være en integer værdi i området fra 0 (lysest) til 100 |
(fuld farvemætning). Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse ValueError hvis farvemætningen er uden for tilladte område. |
</translation> |
</message> |
<message> |
<source>setLineJoin(join, ["name"]) |
|
Sets the line join style of the object "name" to the style "join". |
If "name" is not given the currently selected item is used. There are |
predefined constants for join - JOIN_<type>. |
</source> |
<translation type="obsolete">setLineJoin(samling, ["navn"]) |
|
Sætter typen af liniesamling på objektet "navn" til typen "samling". |
Hvis "navn" ikke angives, så bruges det markerede element. Der er |
predefinerede konstanter for samlingen - JOIN_<type>. |
</translation> |
</message> |
<message> |
<source>setLineEnd(endtype, ["name"]) |
|
Sets the line cap style of the object "name" to the style "cap". |
If "name" is not given the currently selected item is used. There are |
predefined constants for "cap" - CAP_<type>. |
</source> |
<translation type="obsolete">setLineEnd(endetype, ["navn"]) |
|
Sætter typen af linieende på objektet "navn" til typen "endetype" . |
Hvis "navn" ikke angives, så bruges det markerede element. Der er |
predefinerede konstanter for endetyperne - CAP_<type>. |
</translation> |
</message> |
<message> |
<source>setLineStyle(style, ["name"]) |
|
Sets the line style of the object "name" to the style "style". If "name" |
is not given the currently selected item is used. There are predefined |
constants for "style" - LINE_<style>. |
</source> |
<translation type="obsolete">setLineStyle(stil, ["navn"]) |
|
Sætter linie-stil for objektet "navn" til stilen "stil". Hvis "navn" ikke |
angives, så bruges det markerede element. Der er predefinerede |
konstanter for "stil" - LINE_<type>. |
</translation> |
</message> |
<message> |
<source>setFillShade(shade, ["name"]) |
|
Sets the shading of the fill color of the object "name" to "shade". |
"shade" must be an integer value in the range from 0 (lightest) to 100 |
(full Color intensity). If "name" is not given the currently selected |
Item is used. |
|
May raise ValueError if the fill shade is out of bounds. |
</source> |
<translation type="obsolete">setFillShade(farvemætning, ["navn"]) |
|
Sætter farvemætningen på fyld-farven på objektet "navn" til "farvemætning". |
"farvemætning" skal være en integer værdi i området fra 0 (lysest) til 100 |
(fuld farvemætning). Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse ValueError hvis farvemætningen er uden for tilladte område. |
</translation> |
</message> |
<message> |
<source>setCornerRadius(radius, ["name"]) |
|
Sets the corner radius of the object "name". The radius is expressed |
in points. If "name" is not given the currently selected item is used. |
|
May raise ValueError if the corner radius is negative. |
</source> |
<translation type="obsolete">setCornerRadius(radius, ["navn"]) |
|
Sætter radius på hjørnerne på objektet "navn". Radius er udtrykt |
i punkter. Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse ValueError hvis hjørne-radius er negativ. |
</translation> |
</message> |
<message> |
<source>setMultiLine("namedStyle", ["name"]) |
|
Sets the line style of the object "name" to the named style "namedStyle". |
If "name" is not given the currently selected item is used. |
|
May raise NotFoundError if the line style doesn't exist. |
</source> |
<translation type="obsolete">setMultiLine("navngivetStil", ["navn"]) |
|
sætter linie-stil på objektet "navn" til navngivet stil "navngivetStil". |
Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse NotFoundError hvis linie-stilen ikke eksisterer. |
</translation> |
</message> |
<message> |
<source>createParagraphStyle(...) |
|
Creates a paragraph style. This function takes the following keyword parameters: |
|
"name" [required] -> specifies the name of the paragraphstyle to create |
|
linespacingmode [optional] -> specifies the linespacing mode; possible modes are: |
|
fixed linespacing: 0 |
|
automatic linespacing: 1 |
|
baseline grid linespacing: 2 |
|
linespacing [optional] -> specifies the linespacing if using fixed linespacing |
|
alignment [optional] -> specifies the alignment of the paragraph |
|
-> left: 0 |
|
-> center: 1 |
|
-> right: 2 |
|
-> justify: 3 |
|
-> extend: 4 |
|
leftmargin [optional], rightmargin [optional] -> specify the margin |
|
gapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphs |
|
firstindent [optional] -> the indent of the first line |
|
hasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no) |
|
dropcaplines [optional] -> height (in lines) of the caps if used |
|
dropcapoffset [optional] -> offset of the caps if used |
|
"charstyle" [optional] -> char style to use |
|
</source> |
<translation type="obsolete">createParagraphStyle(...) |
 |
Opretter en afsnits-typografi: Denne funktion tager følgende nøgleords parametre: |
|
"navn" [påkrævet] -> angiver navnet på afsnits-typografien, der skal laves |
|
linieafstands-tilstand [valgfrit] -> angiver linieafstands-tilstanden, mulige tilstande er: |
|
fast linieafstand: 0 |
 |
automatisk linieafstand: 1 |
 |
grundlinie gitter linieafstand: 2 |
 |
linieafstand [valgfrit] -> angiver linieafstanden hvis der bruges fast linieafstand |
|
justering [valgfrit] -> angiver justering af afsnittet |
|
-> venstre: 0 |
|
-> centrer: 1 |
|
-> højre: 2 |
 |
-> udslutte: 3 |
|
-> udvid: 4 |
|
venstremargen [valgfrit], højremargen [valgfrit] -> angiver margen |
|
afstandfør [valgfrit], afstandefter [valgfrit] -> angiver afstanden til det forrige og efterfølgende afsnit |
|
førsteindrykning [valgfri] -> indrykningen af den første linie |
|
haruncial [valgfrit] -> angiver om der er unicialer (1 = ja, 0 = nej) |
|
uniciallinier [valgfrit] -> højde (i linier) af unicialerne hvis de er brugt |
|
unicialforskydning [valgfrit] -> forskydning af unicialerne hvis de er brugt |
|
"tegnstil" [valgfrit] -> tegnstil der skal bruges |
|
</translation> |
</message> |
<message> |
<source>createCharStyle(...) |
|
Creates a character style. This function takes the following keyword parameters: |
|
"name" [required] -> name of the char style to create |
|
"font" [optional] -> name of the font to use |
|
fontsize [optional] -> font size to set (double) |
|
"features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!): |
|
-> inherit |
|
-> bold |
|
-> italic |
|
-> underline |
|
-> underlinewords |
|
-> strike |
|
-> superscript |
|
-> subscript |
|
-> outline |
|
-> shadowed |
|
-> allcaps |
|
-> smallcaps |
|
"fillcolor" [optional], "fillshade" [optional] -> specify fill options |
|
"strokecolor" [optional], "strokeshade" [optional] -> specify stroke options |
|
baselineoffset [optional] -> offset of the baseline |
|
shadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if used |
|
outlinewidth [optional] -> width of the outline if used |
|
underlineoffset [optional], underlinewidth [optional] -> underline options if used |
|
strikethruoffset [optional], strikethruwidth [optional] -> strikethru options if used |
|
scaleh [optional], scalev [optional] -> scale of the chars |
|
tracking [optional] -> tracking of the text |
|
"language" [optional] -> language code |
|
</source> |
<translation type="obsolete">createCharStyle(...) |
|
Opretter en tegn-typografi: Denne funktion tager følgende nøgleords parametre: |
|
"navn" [påkrævet] -> angiver navnet på tegn-typografien, der skal laves |
 |
"font" [valgfrit] -> navn på fonten der skal bruges |
|
fontstørrelse[valgfrit] -> fontstørrelse der skal sættes (double) |
|
"egenskaber" [valgfrit] -> nærmere typografiske detaljer kan defineres med en streng, som kunne indholde følgende comma-separerede ord (uden mellemrum!): |
|
-> inherit |
|
-> bold |
|
-> italic |
|
-> underline |
|
-> underlinewords |
|
-> strike |
|
-> superscript |
|
-> subscript |
|
-> outline |
|
-> shadowed |
|
-> allcaps |
|
-> smallcaps |
|
"fyldfarve" [valgfrit], "fyldskygge" [valgfrit] -> angiver fyld tilvalg |
 |
"stregfarve" [valgfrit], "streg-farvemætning" [valgfrit] -> angiver streg tilvalg |
|
grundlinieforskydning [valgfrit] -> forskydning af grundlinien |
|
skygge-xforskydning [valgfrit], skygge-yforskydning [valgfrit] -> forskydning af skyggen hvis den bruges |
|
omridsbredde [valgfrit] -> bredde af tegnomrids hvis det bruges |
|
understreg-forskydning [valgfrit], understreg-bredde [valgfrit] -> understreg tilvalg hvis det bruges |
|
overstreg-forskydning [valgfrit], overstreg-bredde [valgfrit] -> overstreg tilvalg hvis det bruges |
|
skaleh [valgfrit], skalev [valgfrit] -> skalering af tegnene |
|
spatiering [valgfrit] -> spatiering af teksten |
|
"sprog" [valgfrit] -> sprog kode |
|
</translation> |
</message> |
<message> |
<source>getFontSize(["name"]) -> float |
|
Returns the font size in points for the text frame "name". If this text |
frame has some text selected the value assigned to the first character of |
the selection is returned. |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getFontSize(["navn"]) -> komma-tal |
|
Returnerer font-størrelsen i punkter for tekst-ramme "navn". Hvis |
denne tekst-ramme har noget tekst markeret, så returneres værdien |
af det første tegn i den markerede tekst. |
Hvis "navn" ikke angives, så bruges det aktive element. |
</translation> |
</message> |
<message> |
<source>getFont(["name"]) -> string |
|
Returns the font name for the text frame "name". If this text frame |
has some text selected the value assigned to the first character |
of the selection is returned. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">getFont(["navn"]) -> streng |
|
Returnerer font-navnet for tekst-rammen "navn". Hvis denne tekst-ramme |
har noget tekst markeret, så returneres værdien af det første tegn i den |
markerede tekst. Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getTextLength(["name"]) -> integer |
|
Returns the length of the text in the text frame "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getTextLength(["navn"]) -> integer |
|
Returnerer længden på teksten i tekst-rammen "navn". |
Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getTextLines(["name"]) -> integer |
|
Returns the number of lines of the text in the text frame "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getTextLines(["navn"]) -> heltal |
|
Returnerer antal tekst-linier i tekst-rammen "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getText(["name"]) -> string |
|
Returns the text of the text frame "name". If this text frame has some text |
selected, the selected text is returned. All text in the frame, not just |
currently visible text, is returned. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">getText(["navn"]) -> streng |
|
Returnerer teksten fra tekst-rammen "navn". Hvis denne tekst-ramme har |
noget tekst markeret, så returneres den markerede tekst. Al tekst i rammen, |
ikke kun det der lige nu ses, returneres. Hvis "navn" ikke er givet, så bruges |
det markerede element. |
</translation> |
</message> |
<message> |
<source>getAllText(["name"]) -> string |
|
Returns the text of the text frame "name" and of all text frames which are |
linked with this frame. If this textframe has some text selected, the selected |
text is returned. If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">getAllText(["navn"]) -> streng |
|
Returnerer teksten fra tekst-rammen "navn" og alle tekst-rammer, som er lænket |
med denne ramme. Hvis denne tekst-ramme har noget tekst markeret, så returneres |
den markerede tekst. Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineSpacing(["name"]) -> float |
|
Returns the line spacing ("leading") of the text frame "name" expressed in |
points. If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getLineSpacing(["navn"]) -> komma-tal |
|
Returnerer linie-afstanden ("leading") i tekst-rammen "navn" udtrykt i punkter. |
Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getTextDistances(["name"]) -> tuple |
|
Returns the text distances of the text frame "name" expressed in points. The |
distances are returned as a tuple like (left, right, top, bottom). If "name" |
is not given the currently selected item is used. |
</source> |
<translation type="obsolete"> |
vn |
|
Returnerer tekst-afstandene på tekst-rammen "navn" udtrykt i punkter. |
Afstandene returneres som en tuple som (venstre, højre, top bund). Hvis "navn" |
ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getColumnGap(["name"]) -> float |
|
Returns the column gap size of the text frame "name" expressed in points. If |
"name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getColumnGap(["navn"]) -> komma-tal |
|
Returnerer kolonne-afstanden i tekst-rammen "navn" udtrykt i punkter. |
Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getColumns(["name"]) -> integer |
|
Gets the number of columns of the text frame "name". If "name" is not |
given the currently selected item is used. |
</source> |
<translation type="obsolete">getColumns(["navn"]) -> integer |
|
Henter antallet af kolonner i tekst-rammen "navn". Hvis "navn" |
ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setText("text", ["name"]) |
|
Sets the text of the text frame "name" to the text of the string "text". |
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
for more details. If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">setText("tekst", ["navn"]) |
|
Sætter teksten i tekst-rammen "navn" til teksten fra strengen "tekst". |
Teksten skal være UTF8 kodet - brug f.eks. unicode(tekst, 'iso-8859-2'). se FAQ'en |
for flere detaljer. Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>insertText("text", pos, ["name"]) |
|
Inserts the text "text" at the position "pos" into the text frame "name". |
Text must be UTF encoded (see setText() as reference) The first character has an |
index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
not given the currently selected Item is used. |
|
May throw IndexError for an insertion out of bounds. |
</source> |
<translation type="obsolete">insertText("tekst", pos, ["navn"]) |
|
Indsætter teksten "tekst" ved position "pos" i tekst-rammen "navn". |
Teksten skal være UTF kodet (se setText() som reference). Første tegn |
har index 0. Indsættes tekst ved position -1, så tilføjes teksten i slutningen |
af rammen. Hvis "navn" ikke er givet, så bruges det markerede element. |
|
Kan rejse IndexError for en indsætning uden for et gyldigt område. |
</translation> |
</message> |
<message> |
<source>setFont("font", ["name"]) |
|
Sets the font of the text frame "name" to "font". If there is some text |
selected only the selected text is changed. If "name" is not given the |
currently selected item is used. |
|
May throw ValueError if the font cannot be found. |
</source> |
<translation type="obsolete">setFont("font", ["navn"]) |
|
Sætter fonten i tekst-rammen "navn" til "font". Hvis der er markeret nogen |
tekst, vil kun den markerede tekst blive ændret. Hvis "navn" ikke er givet, |
så bruges det markerede element. |
|
Kan rejse ValueError hvis fonten ikke findes. |
</translation> |
</message> |
<message> |
<source>setFontSize(size, ["name"]) |
|
Sets the font size of the text frame "name" to "size". "size" is treated |
as a value in points. If there is some text selected only the selected text is |
changed. "size" must be in the range 1 to 512. If "name" is not given the |
currently selected item is used. |
|
May throw ValueError for a font size that's out of bounds. |
</source> |
<translation type="obsolete">setFontSize(størrelse, ["navn"]) |
|
Sætter font-størrelsen i tekst-rammen "navn" til "størrelse". "størrelse" |
angives i punkter. Hvis der er markeret nogen tekst, vil kun den markerede |
tekst blive ændret. "størrelse" skal være indenfor området 1 til 512. Hvis "navn" |
ikke er givet, så bruges det markerede element. |
|
Kan rejse ValueError for en fontstørrelse der er uden for gyldigt område. |
</translation> |
</message> |
<message> |
<source>setLineSpacing(size, ["name"]) |
|
Sets the line spacing ("leading") of the text frame "name" to "size". |
"size" is a value in points. If "name" is not given the currently selected |
item is used. |
|
May throw ValueError if the line spacing is out of bounds. |
</source> |
<translation type="obsolete">setLineSpacing(størrelse, ["navn"]) |
|
Sætter linie-afstanden ("leading") i tekst-rammen "navn" til "størrelse". |
"størrelse" er angivet i punkter. Hvis "navn" ikke er givet, så bruges |
det markerede element. |
|
Kan rejse ValueError hvis linie-afstanden er uden for gyldigt område. |
</translation> |
</message> |
<message> |
<source>setTextDistances(left, right, top, bottom, ["name"]) |
|
Sets the text distances of the text frame "name" to the values "left" |
"right", "top" and "bottom". If "name" is not given the currently |
selected item is used. |
|
May throw ValueError if any of the distances are out of bounds (must be positive). |
</source> |
<translation type="obsolete"> |
venstre |
højre |
und |
vn |
|
Sætter tekst-afstandene på tekst-rammen "navn" til værdierne |
"venstre", "højre", "top" og "bund. Hvis "navn" ikke er givet, |
så bruges det markerede element. |
|
Kan rejse ValueError hvis nogen af afstandene er uden for tilladte område (skal være positiv). |
</translation> |
</message> |
<message> |
<source>setColumnGap(size, ["name"]) |
|
Sets the column gap of the text frame "name" to the value "size". If |
"name" is not given the currently selected item is used. |
|
May throw ValueError if the column gap is out of bounds (must be positive). |
</source> |
<translation type="obsolete">setColumnGap(størrelse, ["navn"]) |
|
Sætter kolonne-afstanden i tekst-rammen "navn" til værdien "størrelse". |
Hvis "navn" ikke er givet, så bruges det markerede element. |
|
Kan rejse ValueError hvis kolonne-afstanden er uden for gyldigt område (skal være positiv). |
</translation> |
</message> |
<message> |
<source>setColumns(nr, ["name"]) |
|
Sets the number of columns of the text frame "name" to the integer "nr". |
If "name" is not given the currently selected item is used. |
|
May throw ValueError if number of columns is not at least one. |
</source> |
<translation type="obsolete">setColumns(nr, ["navn"]) |
|
Sætter antal kolonner i tekst-rammen "navn" til heltallet "nr". |
Hvis "navn" ikke er givet, så bruges det markerede element. |
|
Kan rejse ValueError hvis antal kolonner ikke er mindst 1. |
</translation> |
</message> |
<message> |
<source>setTextAlignment(align, ["name"]) |
|
Sets the text alignment of the text frame "name" to the specified alignment. |
If "name" is not given the currently selected item is used. "align" should |
be one of the ALIGN_ constants defined in this module - see dir(scribus). |
|
May throw ValueError for an invalid alignment constant. |
</source> |
<translation type="obsolete">setTextAlignment(justering, ["navn"]) |
|
Sætter tekst-justering i tekst-rammen "navn" til angivet justering. |
Hvis "navn" ikke er givet, så bruges det markerede element. "justering" |
skal være en af ALIGN_konstanterne defineret i dette modul - se dir(scribus). |
|
Kan rejse ValueError for en ugyldig ALIGN_konstant. |
</translation> |
</message> |
<message> |
<source>selectText(start, count, ["name"]) |
|
Selects "count" characters of text in the text frame "name" starting from the |
character "start". Character counting starts at 0. If "count" is zero, any |
text selection will be cleared. If "name" is not given the currently |
selected item is used. |
|
May throw IndexError if the selection is outside the bounds of the text. |
</source> |
<translation type="obsolete">selectText(start, antal, ["navn"]) |
|
Markerer "antal" tegn af teksten i tekst-rammen "navn" startende |
fra tegn "start". Tegn tælling starter ved 0. Hvis "antal" er nul, vil |
enhver tekstmarkering blive nulstillet. Hvis "navn" ikke er givet, så bruges |
det markerede element. |
|
Kan rejse IndexError hvis hvis markeringen er sat udenfor teksten. |
</translation> |
</message> |
<message> |
<source>deleteText(["name"]) |
|
Deletes any text in the text frame "name". If there is some text selected, |
only the selected text will be deleted. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">deleteText(["navn"]) |
|
Sletter al tekst i tekst-rammen "navn". Hvis der er markeret noget tekst, så |
slettes kun den markerede tekst. Hvis "navn" ikke er givet, så bruges |
det markerede element. |
</translation> |
</message> |
<message> |
<source>setTextColor("color", ["name"]) |
|
Sets the text color of the text frame "name" to the color "color". If there |
is some text selected only the selected text is changed. If "name" is not |
given the currently selected item is used. |
</source> |
<translation type="obsolete">setTextColor("farve", ["navn"]) |
|
Sætter tekst-farven i tekst-rammen "navn" til farven "farve". Hvis der |
er markeret nogen tekst, så vil kun den markerede tekst blive ændret. |
Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setTextStroke("color", ["name"]) |
|
Set "color" of the text stroke. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">setTextStroke("farve", ["navn"]) |
|
Sætter tekstens streg-farve. Hvis "navn" ikke er givet, |
så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setTextShade(shade, ["name"]) |
|
Sets the shading of the text color of the object "name" to "shade". If |
there is some text selected only the selected text is changed. "shade" must |
be an integer value in the range from 0 (lightest) to 100 (full color |
intensity). If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">setTextShade(farvemætning, ["navn"]) |
|
Sætter farvemætningen på tekst-farven på objektet "navn" til "farvemætning". |
Hvis der er markeret nogen tekst, så vil kun den markerede tekst blive ændret. |
"farvemætning" skal være en integer værdi i området fra 0 (lysest) til 100 |
(fuld farvemætning). Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>linkTextFrames("fromname", "toname") |
|
Link two text frames. The frame named "fromname" is linked to the |
frame named "toname". The target frame must be an empty text frame |
and must not link to or be linked from any other frames already. |
|
May throw ScribusException if linking rules are violated. |
</source> |
<translation type="obsolete">linkTextFrames("franavn", "tilnavn") |
|
Sammenkæder to tekst-rammer. Rammen "franavn" bliver sammenkædet |
med rammen "tilnavn". Mål-rammen skal være en tom tekst-ramme og må |
ikke være sammenkædet med nogen anden ramme. |
</translation> |
</message> |
<message> |
<source>unlinkTextFrames("name") |
|
Remove the specified (named) object from the text frame flow/linkage. If the |
frame was in the middle of a chain, the previous and next frames will be |
connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
|
May throw ScribusException if linking rules are violated. |
</source> |
<translation type="obsolete">unlinkTextFrames("navn") |
|
Fjerner objektet "navn" fra sammenkædede tekstrammer. Hvis rammen |
var i midten af en kæde, så vil den foregående og den efterfølgende ramme |
blive forbundet, f.eks. 'a->b->c' bliver 'a->c' når du kalder unlinkTextFrames(b). |
|
Kan rejse ScribusException hvis sammenkædnings-regler bliver overtrådt. |
</translation> |
</message> |
<message> |
<source>traceText(["name"]) |
|
Convert the text frame "name" to outlines. If "name" is not given the |
currently selected item is used.</source> |
<translation type="obsolete">traceText(["navn"]) |
|
Konverterer fonte i tekst-rammen "navn" til kurver. Hvis "navn" ikke angives, |
så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>textOverflows(["name", nolinks]) -> integer |
|
Returns the actual number of overflowing characters in text frame "name". |
If is nolinks set to non zero value it takes only one frame - it doesn't |
use text frame linking. Without this parameter it search all linking chain. |
|
May raise WrongFrameTypeError if the target frame is not an text frame |
</source> |
<translation type="obsolete">textOverflows(["navn", ingenlinks]) -> integer |
|
Returnerer det faktiske antal skrifttegn der overløber i tekstramme "navn". |
Hvis ingenlinks er sat til andet end nul tages kun en ramme - der bruger ikke |
sammenkædning af tekstrammer. Uden denne parameter søges igennem alle |
sammenkædede tekstrammer. |
|
Kan rejse WrongFrameTypeError hvis den givne ramme ikke er en tekstramme |
</translation> |
</message> |
<message> |
<source>hyphenateText(["name"]) -> bool |
|
Does hyphenation on text frame "name". |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">hyphenateText(["navn"]) -> bool |
|
Foretager orddeling i tekstrammen "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse WrongFrameTypeError hvis den givne ramme ikke er en tekstramme |
</translation> |
</message> |
<message> |
<source>dehyphenateText(["name"]) -> bool |
|
Does dehyphenation on text frame "name". |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">dehyphenateText(["navn"]) -> booll |
|
Fjerner orddeling i tekstrammen "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse WrongFrameTypeError hvis den givne ramme ikke er en tekstramme |
</translation> |
</message> |
<message> |
<source>setPDFBookmark("toggle", ["name"]) |
|
Sets whether (toggle = 1) the text frame "name" is a bookmark nor not. |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">setPDFBookmark("til/fra", ["navn"]) |
|
Sætter hvorvidt (til/fra = 1) tekstrammen "navn" er et bogmærke eller ej. |
Hvis "navn" ikke er givet, så bruges det markerede element. |
|
Kan rejse WrongFrameTypeError, hvis målrammen ikke er en tekst-ramme |
</translation> |
</message> |
<message> |
<source>isPDFBookmark(["name"]) -> bool |
|
Returns true if the text frame "name" is a PDF bookmark. |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">isPDFBookmark(["navn"]) -> bool |
|
Returnerer "true" hvis tekst-rammen "navn" er et PDF bogmærke. |
Hvis "navn" ikke er givet, så bruges det markerede element. |
|
Kan rejse WrongFrameTypeError, hvis målrammen ikke er en tekst-ramme |
</translation> |
</message> |
<message> |
<source>messagebarText("string") |
|
Writes the "string" into the Scribus message bar (status line). The text |
must be UTF8 encoded or 'unicode' string(recommended). |
</source> |
<translation type="obsolete">messagebarText("streng") |
|
Skriver "streng" til Scribus beskedfelt (status linie). Teksten |
skal være UTF8 kodet eller 'unicode' streng (anbefalet). |
</translation> |
</message> |
<message> |
<source>progressReset() |
|
Cleans up the Scribus progress bar previous settings. It is called before the |
new progress bar use. See progressSet. |
</source> |
<translation type="obsolete">progressReset() |
|
Rydder op i Scrbus fremgangs-målererens tidligere indstillinger. Den kaldes før næste |
brug af fremgangs-måleren. Se progressSet. |
</translation> |
</message> |
<message> |
<source>progressTotal(max) |
|
Sets the progress bar's maximum steps value to the specified number. |
See progressSet. |
</source> |
<translation type="obsolete">progressTotal(max) |
|
Sætter fremgangs-målerens maksimale trin-værdi til det angivne tal. |
Se progressSet. |
</translation> |
</message> |
<message> |
<source>progressSet(nr) |
|
Set the progress bar position to "nr", a value relative to the previously set |
progressTotal. The progress bar uses the concept of steps; you give it the |
total number of steps and the number of steps completed so far and it will |
display the percentage of steps that have been completed. You can specify the |
total number of steps with progressTotal(). The current number of steps is set |
with progressSet(). The progress bar can be rewound to the beginning with |
progressReset(). [based on info taken from Trolltech's Qt docs] |
</source> |
<translation type="obsolete">progressSet(nr) |
|
Sætter fremgangs-måler positionen til "nr", en værdi relativ til det tidligere kald af |
progressTotal. Fremgangs-måleren bruger konceptet om trin; du giver den det totale |
antal trin og antal trin nået indtil nu, og den vil så vise den procentvise værdi af de trin |
der er gjort færdige. Du kan angive det totale antal trin med progressTotal(). De |
nuværende antal trin er angivet med progressSet(). Fremgangs-måleren kan spoles |
tilbage til begyndelsen med progressReset(). [Baseret på info fra Trolltech's Qt docs] |
</translation> |
</message> |
<message> |
<source>setCursor() |
|
[UNSUPPORTED!] This might break things, so steer clear for now. |
</source> |
<translation type="obsolete">setCursor() |
|
[IKKE UNDERSTØTTET!] Denne kan få tingene til at bryde sammen, |
så undgå at bruge den lige nu. |
</translation> |
</message> |
<message> |
<source>docChanged(bool) |
|
Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
useful to call this procedure when you're changing the document, because Scribus |
won't automatically notice when you change the document using a script. |
</source> |
<translation type="obsolete">docChanged(bool) |
|
Aktiverer/deaktiverer "gem-ikonet" i Scribus værktøjslinie og "Gem" i fil-menuen. |
Det er brugbart at kalde denne procedure, når du ændrer dokumentet, fordi Scribus |
ikke automatisk opdager, når du har ændret dokumentet ved at bruge en script. |
</translation> |
</message> |
<message> |
<source>zoomDocument(double) |
|
Zoom the document in main GUI window. Actions have whole number |
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
</source> |
<translation type="obsolete">zoomDocument(dobbelt) |
|
Zoom dokumentet i hoved GUI vinduet. Funktionen bruger heltals-værdier |
som 20.0, 100.0, etc. Zoom så siden fylder vinduet bruger -100 som mærke. |
</translation> |
</message> |
<message> |
<source>scrollDocument(x,y) |
|
Scroll the document in main GUI window by x and y. |
</source> |
<translation type="obsolete">scrollDocument(x,y) |
|
Ruller dokumentet i hoved-GUI winduet med værdierne x og y. |
</translation> |
</message> |
<message> |
<source>placeSVG("filename", x, y) |
|
Places the SVG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SVG placed on the page |
|
If loading was successful, the selection contains the imported SVG |
</source> |
<translation type="obsolete">placeSVG("filnavn", x, y) |
|
Placerer SVG "filnavn" på den aktive side, |
x og y specificerer coordinaten af øverste venstre hjørne af SVG'en på siden |
|
hvis indlæsning lykkedes, indeholder markeringen den importerede SVG |
</translation> |
</message> |
<message> |
<source>placeEPS("filename", x, y) |
|
Places the EPS "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the EPS placed on the page |
|
If loading was successful, the selection contains the imported EPS |
</source> |
<translation type="obsolete">placeEPS("filnavn", x, y) |
|
Placerer EPS "filnavn" på den aktive side, |
x og y specificerer coordinaten af øverste venstre hjørne af EPS'en på siden |
|
hvis indlæsning lykkedes, indeholder markeringen den importerede EPS |
</translation> |
</message> |
<message> |
<source>placeSXD("filename", x, y) |
|
Places the SXD "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SXD placed on the page |
|
If loading was successful, the selection contains the imported SXD |
</source> |
<translation type="obsolete">placeSXD("filnavn", x, y) |
|
Placerer SXD "filnavn" på den aktive side, |
x og y specificerer coordinaten af øverste venstre hjørne af SXD'en på siden |
|
hvis indlæsning lykkedes, indeholder markeringen den importerede SXD |
</translation> |
</message> |
<message> |
<source>placeODG("filename", x, y) |
|
Places the ODG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the ODG placed on the page |
|
If loading was successful, the selection contains the imported ODG |
</source> |
<translation type="obsolete">placeODG("filnavn", x, y) |
|
Placerer ODG "filnavn" på den aktive side, |
x og y specificerer coordinaten af øverste venstre hjørne af ODG'en på siden |
|
hvis indlæsning lykkedes, indeholder markeringen den importerede ODG |
</translation> |
</message> |
<message> |
<source>isSpotColor("name") -> bool |
|
Returns True if the color "name" is a spot color. |
See also setSpotColor() |
|
May raise NotFoundError if a named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">isSpotColor("navn") -> bool |
|
Returnerer True hvis farven "navn" er en spot-farve. |
Se også setSpotColor() |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>setSpotColor("name", spot) |
|
Set the color "name" as a spot color if spot parameter is True. |
See also isSpotColor() |
|
May raise NotFoundError if a named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">setSpotColor("navn", spot) |
|
Sætter farven "navn" som en spot-farve hvis spot parameter er "True". |
se også isSpotColor() |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes.. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>scaleImage(x, y [, "name"]) |
|
Sets the internal scaling factors of the picture in the image frame "name". |
If "name" is not given the currently selected item is used. A number of 1 |
means 100 %. Internal scaling factors are different from the values shown on |
properties palette. Note : deprecated, use setImageScale() instead. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation type="obsolete">scaleImage(x, y [, "navn"]) |
|
Sætter de interne Skalerings-faktorer for billedet i billed-rammen "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. Værdien 1 |
betyder 100 %. Interne skaleringsfaktorer er forskellig fra værdierne, som |
vises på egenskabs-paletten. Bemærk : forældet, brug istedet setImageScale(). |
|
kan rejse WrongFrameTypeError, hvis mål-rammen ikke er en billedramme |
</translation> |
</message> |
<message> |
<source>setImageScale(x, y [, "name"]) |
|
Sets the scaling factors of the picture in the image frame "name". |
If "name" is not given the currently selected item is used. A number of 1 |
means 100 %. Scaling factors are equal to the values shown on properties palette. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation type="obsolete">setImagescale(x, y [, "navn"]) |
|
Sætter skalerings-faktorerne for billedet i billed-rammen "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. Værdien 1  betyder |
100 %. Skaleringsfaktorer er lig med værdierne, som vises på egenskabs-paletten. |
|
kan rejse WrongFrameTypeError, hvis mål-rammen ikke er en billedramme |
</translation> |
</message> |
<message> |
<source>setGradientStop("color", shade, opacity, ramppoint, ["name"]) |
|
Set or add a gradient stop to the gradient fill of the object "name" at position ramppoint. |
Color descriptions are the same as for setFillColor() and setFillShade(). setGradientFill() |
must have been called previously for the gradient fill to be visible. |
</source> |
<translation type="obsolete">setGradientStop("farve", skygge, ugennemsigtighed, rampepunkt, ["navn"]) |
|
Sætter eller tilføjer et gradient-stop til gradient-fyldet i objekt "navn" ved position rampepunkt. |
Farve beskrivelserne er de samme som for setFillColor() og setFillShade(). setGradientFill() |
skal tidligere være kaldt for at gradient fyldet bliver synligt. |
</translation> |
</message> |
<message> |
<source>setTextScalingV(scale, ["name"]) |
|
Sets the vertical character scaling of the object "name" to "scale" in percent. |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setTextScalingV(skala, ["navn"]) |
|
Sætter den vertikale tegn-skalering på objektet "navn" til "skala" i procent. |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setTextScalingH(scale, ["name"]) |
|
Sets the horizontal character scaling of the object "name" to "scale" in percent. |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setTextScalingH(skala, ["navn"]) |
|
Sætter den horisontale tegn-skalering på objektet "navn" til "skala" i procent. |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
</context> |
<context> |
<name>@default</name> |
<message> |
<source>getColorNames() -> list |
|
Returns a list containing the names of all defined colors in the document. |
If no document is open, returns a list of the default document colors. |
</source> |
<translation type="obsolete">getColorNames() -> liste |
|
Returnerer en liste, som indeholder navnene på alle definerede farver i dokumentet. |
Hvis ikke et dokument er åbnet, så returneres en liste over standard dokument farver. |
</translation> |
</message> |
<message> |
<source>newDocDialog() -> bool |
|
Displays the "New Document" dialog box. Creates a new document if the user |
accepts the settings. Does not create a document if the user presses cancel. |
Returns true if a new document was created. |
</source> |
<translation type="obsolete">newDocDialog() -> bool |
|
Viser "Ny dokument" dialog boks. Laver et nyt dokument, hvis brugeren |
accepterer indstillingerne. Laver ikke et dokument, hvis brugeren trykker på annullér. |
Returnerer "true" hvis der blev lavet et nyt dokument. |
</translation> |
</message> |
<message> |
<source>getFillColor(["name"]) -> string |
|
Returns the name of the fill color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getFillColor(["navn"]) -> streng |
|
Returnerer navnet på fyld-farven i objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>moveObject(dx, dy [, "name"]) |
|
Moves the object "name" by dx and dy relative to its current position. The |
distances are expressed in the current measurement unit of the document (see |
UNIT constants). If "name" is not given the currently selected item is used. |
If the object "name" belongs to a group, the whole group is moved. |
</source> |
<translation type="obsolete">moveObject(dx, dy [, "navn"]) |
|
Flytter objektet "navn" med dx og dy relativt til dets nuværende position. |
Afstanden er udtrykt i dokumentets nuværende måle-enhed (se UNIT |
konstanter). Hvis "navn" ikke angives, så bruges det aktive element. |
Hvis "navn" hører til en gruppe, så flyttes hele gruppen. |
</translation> |
</message> |
<message> |
<source>setRedraw(bool) |
|
Disables page redraw when bool = False, otherwise redrawing is enabled. |
This change will persist even after the script exits, so make sure to call |
setRedraw(True) in a finally: clause at the top level of your script. |
</source> |
<translation type="obsolete">setRedraw(bool) |
|
Forhindrer gentegning af siden når bool="false", ellers er gentegning aktiveret. |
Denne ændring vil holde selv efter scriptet afslutter, så vær sikker på at |
kalde setredraw(True) i slutningen: Forbeholdt topniveau af dit script. |
</translation> |
</message> |
<message> |
<source>createRect(x, y, width, height, ["name"]) -> string |
|
Creates a new rectangle on the current page and returns its name. The |
coordinates are given in the current measurement units of the document |
(see UNIT constants). "name" should be a unique identifier for the object |
because you need this name to reference that object in future. If "name" |
is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation type="obsolete">createRect(x, y, bredde, højde, ["navn"]) -> streng |
|
Laver en ny rectangle på den aktive side og returnerer dets navn. |
Koordinaterne er givet i dokumentets nuværende måle-enhed (se |
UNIT konstanter). "navn" skal være et unikt navn, fordi du behøver |
dette navn for at kunne referere til dette objekt senere. Hvis "navn" |
ikke angives, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede findes. |
</translation> |
</message> |
<message> |
<source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
|
Sets the gradient fill of the object "name" to type. Color descriptions are |
the same as for setFillColor() and setFillShade(). See the constants for |
available types (FILL_<type>). |
</source> |
<translation type="obsolete">setGradientFill(type, "farve1", mætning1, "farve2", mætning2, ["navn"]) |
|
Sætter gradient-fyld af objektet "navn" til type. Farvebeskrivelsen er |
den samme, som for setFillColor() og setFillShade(). Se konstanterne |
for mulige typer (FILL_<type>). |
</translation> |
</message> |
<message> |
<source>getFontSize(["name"]) -> float |
|
Returns the font size in points for the text frame "name". If this text |
frame has some text selected the value assigned to the first character of |
the selection is returned. |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getFontSize(["navn"]) -> komma-tal |
|
Returnerer font-størrelsen i punkter for tekst-ramme "navn". Hvis |
denne tekst-ramme har noget tekst markeret, så returneres værdien |
af det første tegn i den markerede tekst. |
Hvis "navn" ikke angives, så bruges det aktive element. |
</translation> |
</message> |
<message> |
<source>messagebarText("string") |
|
Writes the "string" into the Scribus message bar (status line). The text |
must be UTF8 encoded or 'unicode' string(recommended). |
</source> |
<translation type="obsolete">messagebarText("streng") |
|
Skriver "streng" til Scribus beskedfelt (status linie). Teksten |
skal være UTF8 kodet eller 'unicode' streng (anbefalet). |
</translation> |
</message> |
<message> |
<source>newPage(where [,"masterpage"]) |
|
Creates a new page. If "where" is -1 the new Page is appended to the |
document, otherwise the new page is inserted before "where". Page numbers are |
counted from 1 upwards, no matter what the displayed first page number of your |
document is. The optional parameter "masterpage" specifies the name of the |
master page for the new page. |
|
May raise IndexError if the page number is out of range |
</source> |
<translation type="obsolete">newPage(hvor [,"masterside"]) |
|
Laver en ny side. Hvis "hvor" er -1, så tilføjes den nye side i slutningen |
af dokumentet, ellers er den ny side indsat før "hvor". Side-numre er |
talt fra 1 og opefter, lige meget hvad nummer den første side har fået. |
Den valgfri parameter "masterside" angiver navnet på den master side, |
der skal bruges til den nye side. |
|
Kan rejse IndexError hvis side-nummer er uden for tilladte værdi |
</translation> |
</message> |
<message> |
<source>newDocument(size, margins, orientation, firstPageNumber, |
unit, pagesType, firstPageOrder, numPages) -> bool |
|
Creates a new document and returns true if successful. The parameters have the |
following meaning: |
|
size = A tuple (width, height) describing the size of the document. You can |
use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
|
firstPageNumer = is the number of the first page in the document used for |
pagenumbering. While you'll usually want 1, it's useful to have higher |
numbers if you're creating a document in several parts. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
PAGE_4 is 4-fold. |
|
firstPageOrder = What is position of first page in the document. |
Indexed from 0 (0 = first). |
|
numPage = Number of pages to be created. |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
PAGE_4, 3, 1) |
|
May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
</source> |
<translation type="obsolete">newDocument(størrelse, margener, retning, førsteSideNummer, |
måle-enhed, sideType, førsteSideOrden, antalSider) -> bool |
|
Laver et Nyt dokument og returnerer "true" hvis det lykkedes. Parametrene har |
følgende betydning: |
|
størrelse = A tuple (bredde, højde) beskriver størrelsen af dokumentet. du kan |
bruge predefinerede constanter med navnet PAPER_<papir_type> f.eks. PAPER_A4 etc. |
|
margener = En tuple (venstre, højre, top, bund) beskriver documentets margener |
|
retning = sidens retning - constanter PORTRAIT, LANDSCAPE |
|
førsteSideNummer = er nummeret på den første side i dokumentet brugt for |
side-nummerering. Selvom værdien oftest er 1, så er der nogen gange brug for |
et højere nummer, hvis et dokument består af flere dele. |
|
måle-enhed: denne værdi sætter måle-enheden, som bruges i dokumentet. Brug en |
predefineret constant for dette, en af: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
sideType = En af de predefinerede constanter PAGE_n. PAGE_1 er enkeltside, |
PAGE_2 er for dobbeltsidet dokumenter, PAGE_3 er for 3 siders folder og |
PAGE_4 er 4-fold |
|
førsteSideOrden = Hvad er positionen af første side i dokumentet. |
Indeksering fra 0 (0 = første). |
|
antalSider = Antal sider som skal laves. |
|
Værdierne for bredde, højde og margener er udtrykt i den givne måle-enhed |
for dokumentet. PAPER_* constanter er udtrykt i punkter. Hvis dit dokument |
ikke er i punkter, så sørg for at tage højde for dette. |
|
eksempel: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
PAGE_4, 3, 1) |
|
Kan rejse ScribusError hvis førsteSideOrden er større end tilladt for sideType. |
</translation> |
</message> |
<message> |
<source>placeSVG("filename", x, y) |
|
Places the SVG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SVG placed on the page |
|
If loading was successful, the selection contains the imported SVG |
</source> |
<translation type="obsolete">placeSVG("filnavn", x, y) |
|
Placerer SVG "filnavn" på den aktive side, |
x og y specificerer coordinaten af øverste venstre hjørne af SVG'en på siden |
|
hvis indlæsning lykkedes, indeholder markeringen den importerede SVG |
</translation> |
</message> |
<message> |
<source>getColor("name") -> tuple |
|
Returns a tuple (C, M, Y, K) containing the four color components of the |
color "name" from the current document. If no document is open, returns |
the value of the named color from the default document colors. |
|
May raise NotFoundError if the named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">getColor("navn") -> tuple |
|
Returnerer en tuple (C, M, Y, K), som indeholder de fire farvekomponenter af |
farven "navn" fra det aktive dokument. Hvis ingen dokumenter er åben, så |
returneres værdien af den navngivne farve fra standard dokument farver. |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>changeColor("name", c, m, y, k) |
|
Changes the color "name" to the specified CMYK value. The color value is |
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
Color components should be in the range from 0 to 255. |
|
May raise NotFoundError if the named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">changeColor("navn", c, m, y, k) |
|
Ændrer farven "navn " til den angivne C, M, Y, K værdi. Farveværdien er |
defineret via fire komponenter c = Cyan, m = Magenta, y = Gul og k = sort. |
Farve-komponenterne skal være i området fra 0 til 255. |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>deleteColor("name", "replace") |
|
Deletes the color "name". Every occurence of that color is replaced by the |
color "replace". If not specified, "replace" defaults to the color |
"None" - transparent. |
|
deleteColor works on the default document colors if there is no document open. |
In that case, "replace", if specified, has no effect. |
|
May raise NotFoundError if a named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">deleteColor("navn", "erstat") |
|
Sletter farven "navn ". Enhver forekomst af denne farve er erstattet |
af farven "erstat". Hvis "erstat" ikke er angivet, så sættes farven til |
"NONE" - transparent. |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>replaceColor("name", "replace") |
|
Every occurence of the color "name" is replaced by the color "replace". |
|
May raise NotFoundError if a named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">replaceColor("navn", "erstat") |
|
Enhver forekomst af farven "navn" bliver erstattet af farven "erstat". |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>messageBox("caption", "message", |
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
|
Displays a message box with the title "caption", the message "message", and |
an icon "icon" and up to 3 buttons. By default no icon is used and a single |
button, OK, is displayed. Only the caption and message arguments are required, |
though setting an icon and appropriate button(s) is strongly |
recommended. The message text may contain simple HTML-like markup. |
|
Returns the number of the button the user pressed. Button numbers start |
at 1. |
|
For the icon and the button parameters there are predefined constants available |
with the same names as in the Qt Documentation. These are the BUTTON_* and |
ICON_* constants defined in the module. There are also two extra constants that |
can be binary-ORed with button constants: |
BUTTONOPT_DEFAULT Pressing enter presses this button. |
BUTTONOPT_ESCAPE Pressing escape presses this button. |
|
Usage examples: |
result = messageBox('Script failed', |
'This script only works when you have a text frame selected.', |
ICON_ERROR) |
result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
|
Defined button and icon constants: |
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
</source> |
<translation type="obsolete">messageBox("titel", "besked", |
ikon=ICON_NONE, knap1=BUTTON_OK|BUTTONOPT_DEFAULT, |
knap2=BUTTON_NONE, knap3=BUTTON_NONE) -> integer |
|
Viser en besked-boks med titlen "titel", meddelelsen "besked", og |
et ikon "ikon" og op til 3 knapper. Som standard bruges ingen ikoner og |
en enkel knap, OK, er vist. Kun titel og besked argumenterne er påkrævet, |
selvom det anbefales meget, at sætte et ikon og passende knap(per). |
Besked-teksten kan indeholde simple HTML-lignende formatering. |
|
Returnerer nummeret på den knap brugeren trykkede på. Knap-numre |
starter ved 1. |
|
For ikon og knap-parametre er der predefinerede konstanter tilgængelige |
med de samme navne som i Qt Dokumentationen. Disse er BUTTON_* og |
ICON_* konstanterne defineret i modulet. Der er også to ekstra konstanter der |
kan binær-ORes med knap konstanter: |
BUTTONOPT_DEFAULT Tryk enter trykker denne knap. |
BUTTONOPT_ESCAPE Tryk escape trykker denne knap. |
|
Eksempler på brug: |
resultat = messageBox('Script fejlede', |
'Denne script fungerer kun, når der er markeret en tekst-ramme.', |
ICON_ERROR) |
resultat = messageBox('Abekatte!', 'Noget gik agurk! <i>Hvad er en abekat?</i>', |
ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
|
Definerede knap og ikon konstanter: |
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
</translation> |
</message> |
<message> |
<source>valueDialog(caption, message [,defaultvalue]) -> string |
|
Shows the common 'Ask for string' dialog and returns its value as a string |
Parameters: window title, text in the window and optional 'default' value. |
|
Example: valueDialog('title', 'text in the window', 'optional') |
</source> |
<translation type="obsolete">valueDialog(titel, besked [,standardværdi]) -> streng |
|
Viser den almindelige 'spørg efter streng' dialog og returnerer dens værdi som en streng |
Parametre: vindue-titel, tekst i vinduet og en valgfri 'standard' værdi. |
|
Eksempel: valueDialog('titel', 'tekst i vinduet', 'valgfri') |
</translation> |
</message> |
<message> |
<source>closeDoc() |
|
Closes the current document without prompting to save. |
|
May throw NoDocOpenError if there is no document to close |
</source> |
<translation type="obsolete">closeDoc() |
|
Lukker det aktive dokument uden at spørge om det skal gemmes. |
|
Kan rejse NoDocOpenError hvis der ikke er noget dokument at lukke |
</translation> |
</message> |
<message> |
<source>haveDoc() -> bool |
|
Returns true if there is a document open. |
</source> |
<translation type="obsolete">haveDoc() -> bool |
|
Returnerer "true" hvis der er et åbent dokument. |
</translation> |
</message> |
<message> |
<source>openDoc("name") |
|
Opens the document "name". |
|
May raise ScribusError if the document could not be opened. |
</source> |
<translation type="obsolete">openDoc("navn") |
|
Åbner dokumentet "navn" |
|
Kan rejse ScribusError hvis dokumentet ikke kunne åbnes. |
</translation> |
</message> |
<message> |
<source>saveDoc() |
|
Saves the current document with its current name, returns true if successful. |
If the document has not already been saved, this may bring up an interactive |
save file dialog. |
|
If the save fails, there is currently no way to tell. |
</source> |
<translation type="obsolete">saveDoc("navn") |
|
Gemmer det aktive dokument med dets nuværende navn, returnerer "true" hvis |
det lykkedes. Hvis dokumentet ikke allerede har været gemt, så vil der komme |
en interaktiv "gem fil" dialog. |
|
Hvis "gem fil" fejler, er der ikke nogen måde at fortælle det på. |
</translation> |
</message> |
<message> |
<source>saveDocAs("name") |
|
Saves the current document under the new name "name" (which may be a full or |
relative path). |
|
May raise ScribusError if the save fails. |
</source> |
<translation type="obsolete">saveDocAs("navn") |
|
Gemmer det aktive dokument med det nye navn "navn" (som kan være en |
fuld eller relativ sti). |
|
Kan rejse ScribusError hvis gemningen fejler. |
</translation> |
</message> |
<message> |
<source>setMargins(lr, rr, tr, br) |
|
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
margins are given in the measurement units of the document - see UNIT_<type> |
constants. |
</source> |
<translation type="obsolete">setMargins(lr, rr, tr, br) |
|
Sætter dokumentets margener, Venstre(lr), Højre(rr), Top(tr) og Bund(br) |
margener er angivet i dokumentets måle-enhed - se UNIT_<type> konstanter. |
</translation> |
</message> |
<message> |
<source>setUnit(type) |
|
Changes the measurement unit of the document. Possible values for "unit" are |
defined as constants UNIT_<type>. |
|
May raise ValueError if an invalid unit is passed. |
</source> |
<translation type="obsolete">setUnit(type) |
|
Ændrer dokumentets måle-enhed. Mulige værdier for "enhed" er |
defineret som konstanter UNIT_<type>. |
|
Kan rejse ValueError hvis en ugyldig type er angivet. |
</translation> |
</message> |
<message> |
<source>getUnit() -> integer (Scribus unit constant) |
|
Returns the measurement units of the document. The returned value will be one |
of the UNIT_* constants: |
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
</source> |
<translation type="obsolete">getUnit() -> integer (Scribus enheds konstant) |
|
Returnerer dokumentets måle-enhed. Den returnerede værdi vil være en |
af UNIT_* konstanterne: |
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
</translation> |
</message> |
<message> |
<source>loadStylesFromFile("filename") |
|
Loads paragraph styles from the Scribus document at "filename" into the |
current document. |
</source> |
<translation type="obsolete">loadStylesFromFile("filnavn") |
|
Indlæser afsnits-typografierne fra Scribus dokumentet "filnavn" |
ind i det aktive dokument. |
</translation> |
</message> |
<message> |
<source>setDocType(facingPages, firstPageLeft) |
|
Sets the document type. To get facing pages set the first parameter to |
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
a right page use FIRSTPAGERIGHT. |
</source> |
<translation type="obsolete">setDocType(modståendeSider, førsteSideVenstre) |
|
Sætter dokumentets type. For at få modstående sider, så sæt den første værdi |
til FACINGPAGES, for at deaktivere dette brug istedet NOFACINGPAGES. Hvis du ønsker |
at have den første side som venstre side, sæt da den anden værdi til FIRSTPAGELEFT, for |
en højre side som den første brug FIRSTPAGERIGHT. |
</translation> |
</message> |
<message> |
<source>getLineColor(["name"]) -> string |
|
Returns the name of the line color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getLineColor(["navn"]) -> streng |
|
Returnerer navnet på linie-farven på objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineWidth(["name"]) -> integer |
|
Returns the line width of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getLineWidth(["navn"]) -> integer |
|
Returnerer linie-bredde på på objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineShade(["name"]) -> integer |
|
Returns the shading value of the line color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getLineShade(["navn"]) -> integer |
|
Returnerer værdien for liniens farvemætning på objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineJoin(["name"]) -> integer (see contants) |
|
Returns the line join style of the object "name". If "name" is not given |
the currently selected item is used. The join types are: |
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
</source> |
<translation type="obsolete">getLineJoin(["navn"]) -> integer (se kontanter) |
|
Returnerer typen af liniesamlingen på objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. Samlingstyperne er |
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
</translation> |
</message> |
<message> |
<source>getLineEnd(["name"]) -> integer (see constants) |
|
Returns the line cap style of the object "name". If "name" is not given the |
currently selected item is used. The cap types are: |
CAP_FLAT, CAP_ROUND, CAP_SQUARE |
</source> |
<translation type="obsolete">getLineEnd(["navn"]) -> integer (se kontanter) |
|
Returnerer typen af linieenden på objektet "navn" Hvis "navn" |
ikke angives, så bruges det markerede element. Endetyperne er |
CAP_FLAT, CAP_ROUND, CAP_SQUARE |
</translation> |
</message> |
<message> |
<source>getLineStyle(["name"]) -> integer (see constants) |
|
Returns the line style of the object "name". If "name" is not given the |
currently selected item is used. Line style constants are: |
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
</source> |
<translation type="obsolete">getLineStyle(["navn"]) -> integer (se kontanter) |
|
Returnerer liniestilen på objektet "navn" Hvis "navn" ikke |
angives, så bruges det markerede element. Liniestilene er |
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
</translation> |
</message> |
<message> |
<source>getFillShade(["name"]) -> integer |
|
Returns the shading value of the fill color of the object "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getFillShade(["navn"]) -> integer |
|
Returnerer farvemætningen på fyld-farven på objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getImageScale(["name"]) -> (x,y) |
|
Returns a (x, y) tuple containing the scaling values of the image frame |
"name". If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getImageScale(["navn"]) -> (x,y) |
|
Returnerer en (x, y) tuple, som indeholder skaleringsværdierne for billedrammen |
"navn". Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getImageName(["name"]) -> string |
|
Returns the filename for the image in the image frame. If "name" is not |
given the currently selected item is used. |
</source> |
<translation type="obsolete">getImageName(["navn"]) -> streng |
|
Returnerer filnavnet for billedet i billed-rammen "navn". Hvis |
"navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getSize(["name"]) -> (width,height) |
|
Returns a (width, height) tuple with the size of the object "name". |
If "name" is not given the currently selected item is used. The size is |
expressed in the current measurement unit of the document - see UNIT_<type> |
for reference. |
</source> |
<translation type="obsolete">getSize(["navn"]) -> (bredde,højde) |
|
Returnerer en (bredde, højde) tuple med størrelsen på objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. Størrelsen |
er udtrykt i den aktuelle måle-enhed for dokumentet - se UNIT_<type> |
for reference. |
</translation> |
</message> |
<message> |
<source>getRotation(["name"]) -> integer |
|
Returns the rotation of the object "name". The value is expressed in degrees, |
and clockwise is positive. If "name" is not given the currently selected item |
is used. |
</source> |
<translation type="obsolete">getRotation(["navn"]) -> integer |
|
Returnerer rotationen på objektet "navn". Værdien er udtrykt i grader, |
og med uret giver en positiv værdi. Hvis "navn" ikke angives, så bruges |
det markerede element. |
</translation> |
</message> |
<message> |
<source>getAllObjects() -> list |
|
Returns a list containing the names of all objects on the current page. |
</source> |
<translation type="obsolete">getAllObjects() -> liste |
|
Returnerer en liste, som indeholder navnene på alle objekter på den aktive side. |
</translation> |
</message> |
<message> |
<source>moveObjectAbs(x, y [, "name"]) |
|
Moves the object "name" to a new location. The coordinates are expressed in |
the current measurement unit of the document (see UNIT constants). If "name" |
is not given the currently selected item is used. If the object "name" |
belongs to a group, the whole group is moved. |
</source> |
<translation type="obsolete">moveObjectAbs(x, y [,"navn"]) |
|
Flytter objektet "navn" til en ny placering. Koordinaterne er udtrykt i den |
aktuelle måle-enhed for dokumentet - (se UNIT konstanter). Hvis "navn" |
ikke angives, så bruges det markerede element. Hvis objektet "navn" |
hører til en gruppe, så flyttes hele gruppen. |
</translation> |
</message> |
<message> |
<source>rotateObject(rot [, "name"]) |
|
Rotates the object "name" by "rot" degrees relatively. The object is |
rotated by the vertex that is currently selected as the rotation point - by |
default, the top left vertext at zero rotation. Positive values mean counter |
clockwise rotation when the default rotation point is used. If "name" is not |
given the currently selected item is used. |
</source> |
<translation type="obsolete">rotateObject(rot [, "navn"]) |
|
Roterer objektet "navn" med "rot" grader relativt. Objektet er roteret |
omkring den spids, som er valgt som omdrejningspunkt - standard er |
det øverste venstre ved nul rotation. Positive værdier angiver drejning |
mod uret, når standard omdrejnings-punktet bruges. Hvis "navn" ikke |
angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>sizeObject(width, height [, "name"]) |
|
Resizes the object "name" to the given width and height. If "name" |
is not given the currently selected item is used. |
</source> |
<translation type="obsolete">sizeObject(bredde, højde [, "navn"]) |
|
Ændrer størrelsen på objektet "navn" til den givne bredde og højde. |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getSelectedObject([nr]) -> string |
|
Returns the name of the selected object. "nr" if given indicates the number |
of the selected object, e.g. 0 means the first selected object, 1 means the |
second selected Object and so on. |
</source> |
<translation type="obsolete">getSelectedObject([nr]) -> streng |
|
Returnerer navnet på det markerede objekt. Hvis "nr" angives, så indikerer |
det nummeret på det markerede objekt, f.eks. betyder 0 det første markerede |
objekt, 1 betyder det andet markerede objekt o.s.v. |
</translation> |
</message> |
<message> |
<source>selectionCount() -> integer |
|
Returns the number of selected objects. |
</source> |
<translation type="obsolete">selectionCount() -> integer |
|
Returneret antallet af markerede objekter. |
</translation> |
</message> |
<message> |
<source>selectObject("name") |
|
Selects the object with the given "name". |
</source> |
<translation type="obsolete">selectObject("navn") |
|
Marker objekt med det givne "navn". |
</translation> |
</message> |
<message> |
<source>deselectAll() |
|
Deselects all objects in the whole document. |
</source> |
<translation type="obsolete">deselectAll() |
|
Fjerner alle markeringer i hele dokumentet. |
</translation> |
</message> |
<message> |
<source>groupObjects(list) |
|
Groups the objects named in "list" together. "list" must contain the names |
of the objects to be grouped. If "list" is not given the currently selected |
items are used. |
</source> |
<translation type="obsolete">groupObjects(liste) |
|
Laver en gruppe af alle objekter der er nævnt i "liste". "liste" skal indeholde |
navnene på de objekter, som skal laves til en gruppe. Hvis "liste" ikke angives, |
så bruges de markerede elementer. |
</translation> |
</message> |
<message> |
<source>unGroupObjects("name") |
|
Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
<translation type="obsolete">unGroupObjects("navn") |
|
Adskiller gruppen, som objektet "navn" hører til. Hvis "navn" ikke angives, |
så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>scaleGroup(factor [,"name"]) |
|
Scales the group the object "name" belongs to. Values greater than 1 enlarge |
the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
scales the group to 50 % of its original size, a value of 1.5 scales the group |
to 150 % of its original size. The value for "factor" must be greater than |
0. If "name" is not given the currently selected item is used. |
|
May raise ValueError if an invalid scale factor is passed. |
</source> |
<translation type="obsolete">scaleGroup(faktor [,"navn"]) |
|
Skalerer gruppen, som objekter "navn" hører til. Værdier større en 1 forstørrer |
gruppen, værdier mindre end 1 laver gruppen mindre, f.eks. en værdi på 0.5 |
skalerer gruppen til 50 % af dens originale størrelse, en værdi på 1.5 skalerer |
gruppen til 150 % af dens originale størrelse. Værdien for "faktor" skal være |
større end 0. Hvis "navn" ikke angives, så bruges det markerede element. |
|
kan rejse ValueError, hvis en ugyldig skalerings-faktor er angivet. |
</translation> |
</message> |
<message> |
<source>loadImage("filename" [, "name"]) |
|
Loads the picture "picture" into the image frame "name". If "name" is |
not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation type="obsolete">loadImage("filnavn", "navn") |
|
Indlæser billedet "filnavn" ind i billed-rammen "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
|
Kan rejse WrongFrameTypeError, hvis målrammen ikke er en billed-ramme |
</translation> |
</message> |
<message> |
<source>scaleImage(x, y [, "name"]) |
|
Sets the scaling factors of the picture in the image frame "name". |
If "name" is not given the currently selected item is used. A number of 1 |
means 100 %. |
|
May raise WrongFrameTypeError if the target frame is not an image frame |
</source> |
<translation type="obsolete">scaleImage(x, y [, "navn"]) |
|
Sætter Skalerings-faktorerne for billedet i billed-rammen "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
Værdien 1 betyder 100 %. |
|
kan rejse WrongFrameTypeError, hvis mål-rammen ikke er en billedramme |
</translation> |
</message> |
<message> |
<source>lockObject(["name"]) -> bool |
|
Locks the object "name" if it's unlocked or unlock it if it's locked. |
If "name" is not given the currently selected item is used. Returns true |
if locked. |
</source> |
<translation type="obsolete">lockObject(["navn"]) -> bool |
|
Låser objektet "navn" hvis det er ulåst og låser det op hvis det er låst. |
Hvis "navn" ikke angives, så bruges det markerede element. |
Returnerer "true" hvis objektet er låst. |
</translation> |
</message> |
<message> |
<source>isLocked(["name"]) -> bool |
|
Returns true if is the object "name" locked. If "name" is not given the |
currently selected item is used. |
</source> |
<translation type="obsolete">isLocked(["navn"]) -> bool |
|
Returnerer "true" hvis objektet "navn" er låst. Hvis "navn" ikke angives, |
så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getFontNames() -> list |
|
Returns a list with the names of all available fonts. |
</source> |
<translation type="obsolete">getFontNames() -> liste |
|
Returnerer en liste med navnene på alle tilgængelige fonte. |
</translation> |
</message> |
<message> |
<source>getXFontNames() -> list of tuples |
|
Returns a larger font info. It's a list of the tuples with: |
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
</source> |
<translation type="obsolete">getXFontNames() -> liste af tupler |
|
Returner større mængde font-info. Det er en liste af tuplerne med: |
[ (Scribus navn, Familie, Rigtige navn, substituere (1|0), indlejr PS (1|0), font-fil), (...), ... ] |
</translation> |
</message> |
<message> |
<source>getLayers() -> list |
|
Returns a list with the names of all defined layers. |
</source> |
<translation type="obsolete">getLayers() -> liste |
|
Returnerer en liste med navnene på alle definerede lag. |
</translation> |
</message> |
<message> |
<source>setActiveLayer("name") |
|
Sets the active layer to the layer named "name". |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setActiveLayer("navn") |
|
Sætter laget "navn" som det aktive lag. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>getActiveLayer() -> string |
|
Returns the name of the current active layer. |
</source> |
<translation type="obsolete">getActiveLayer() -> streng |
|
Returnerer navnet på det aktive lag. |
</translation> |
</message> |
<message> |
<source>sentToLayer("layer" [, "name"]) |
|
Sends the object "name" to the layer "layer". The layer must exist. |
If "name" is not given the currently selected item is used. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">sentToLayer("lag" [, "navn"]) |
|
Sender objektet "navn" til laget "lag". Laget skal eksistere. |
Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>setLayerVisible("layer", visible) |
|
Sets the layer "layer" to be visible or not. If is the visible set to false |
the layer is invisible. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerVisible("lag", synlig) |
|
Sætter laget "lag" til at være synligt eller usynligt. Hvis "synlig" sættes til |
"False", så er laget usynligt. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>deleteLayer("layer") |
|
Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
exists or if it's the only layer in the document. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">deleteLayer("lag") |
|
Sletter laget med navnet "lag". Der sker ingen ting hvis laget ikke |
eksisterer eller hvis det er det eneste lag i dokumentet. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>createLayer(layer) |
|
Creates a new layer with the name "name". |
|
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">createLayer("lag") |
|
Laver et nyt lag med navnet "lag". |
|
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>getGuiLanguage() -> string |
|
Returns a string with the -lang value. |
</source> |
<translation type="obsolete">getGuiLanguage() -> streng |
|
Returnerer en streng med -lang værdien. |
</translation> |
</message> |
<message> |
<source>createEllipse(x, y, width, height, ["name"]) -> string |
|
Creates a new ellipse on the current page and returns its name. |
The coordinates are given in the current measurement units of the document |
(see UNIT constants). "name" should be a unique identifier for the object |
because you need this name for further referencing of that object. If "name" |
is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation type="obsolete">createEllipse(x, y, bredde, højde, ["navn"]) -> streng |
|
Laver en ny ellipse på den aktive side og returnerer dets navn. |
Koordinaterne er givet i dokumentets nuværende måle-enhed (se |
UNIT konstanter). "navn" skal være et unikt navn, fordi du behøver |
dette navn for at kunne referere til dette objekt senere. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
</translation> |
</message> |
<message> |
<source>createImage(x, y, width, height, ["name"]) -> string |
|
Creates a new picture frame on the current page and returns its name. The |
coordinates are given in the current measurement units of the document. |
"name" should be a unique identifier for the object because you need this |
name for further access to that object. If "name" is not given Scribus will |
create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation type="obsolete">createImage(x, y, bredde, højde, ["navn"]) -> streng |
|
Laver en ny billed-ramme på den aktive side og returnerer dets navn. |
Koordinaterne er givet i dokumentets nuværende måle-enhed (se |
UNIT konstanter). "navn" skal være et unikt navn, fordi du behøver |
dette navn for at kunne referere til dette objekt senere. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
</translation> |
</message> |
<message> |
<source>createText(x, y, width, height, ["name"]) -> string |
|
Creates a new text frame on the actual page and returns its name. |
The coordinates are given in the actual measurement unit of the document (see |
UNIT constants). "name" should be a unique identifier for the object because |
you need this name for further referencing of that object. If "name" is not |
given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation type="obsolete">createText(x, y, bredde, højde, ["navn"]) -> streng |
|
Laver en ny tekst-ramme på den aktive side og returnerer dets navn. |
Koordinaterne er givet i dokumentets nuværende måle-enhed (se |
UNIT konstanter). "navn" skal være et unikt navn, fordi du behøver |
dette navn for at kunne referere til dette objekt senere. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
</translation> |
</message> |
<message> |
<source>createLine(x1, y1, x2, y2, ["name"]) -> string |
|
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
its name. The coordinates are given in the current measurement unit of the |
document (see UNIT constants). "name" should be a unique identifier for the |
object because you need this name for further access to that object. If |
"name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
</source> |
<translation type="obsolete">createLine(x1, y1, x2, y2, ["navn"]) -> streng |
|
Laver en ny linie fra punktet(x1, y1) til punktet(x2, y2) og returnerer |
dens navn. Koordinaterne er givet i dokumentets nuværende måle-enhed |
(se UNIT konstanter). "navn" skal være et unikt navn for objektet, fordi |
du behøver dette navn for yderligere adgang til dette objekt. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
</translation> |
</message> |
<message> |
<source>createPolyLine(list, ["name"]) -> string |
|
Creates a new polyline and returns its name. The points for the polyline are |
stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
The coordinates are given in the current measurement units of the document (see |
UNIT constants). "name" should be a unique identifier for the object because |
you need this name for further access to that object. If "name" is not given |
Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">createPolyLine(liste, ["navn"]) -> streng |
|
Laver en ny poly-linie og returnerer dens navn. Poly-liniens punkter |
er placeret i listen "liste" i følgende orden: [x1, y1, x2, y2...xn, yn]. |
Koordinaterne er givet i dokumentets nuværende måle-enhed |
(se UNIT konstanter). "navn" skal være et unikt navn for objektet, fordi |
du behøver dette navn for yderligere adgang til dette objekt. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
Kan rejse ValueError hvis et utilstrækkeligt antal punkter er angivet eller hvis |
antallet af værdier ikke kan danne talpar uden noget tilovers. |
</translation> |
</message> |
<message> |
<source>createPolygon(list, ["name"]) -> string |
|
Creates a new polygon and returns its name. The points for the polygon are |
stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
At least three points are required. There is no need to repeat the first point |
to close the polygon. The polygon is automatically closed by connecting the |
first and the last point. The coordinates are given in the current measurement |
units of the document (see UNIT constants). "name" should be a unique |
identifier for the object because you need this name for further access to that |
object. If "name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">createPolygon(liste, ["navn"]) -> streng |
|
Laver et nyt polygon og returnerer dets navn. Polygonets punkter |
er placeret i listen "liste" i følgende orden: [x1, y1, x2, y2...xn, yn]. |
Mindst tre punkter er påkrævet. Det er ikke nødvendigt at gentage det |
første punkt for at lukke polygonet. Polygonet er automatisk lukket ved at |
forbinde det første og det sidste punkt. Koordinaterne er givet i dokumentets |
nuværende måle-enhed (se UNIT konstanter). "navn" skal være et unikt navn |
for objektet, fordi du behøver dette navn for yderligere adgang til dette objekt. |
Hvis "navn" ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
Kan rejse ValueError hvis et utilstrækkeligt antal punkter er angivet eller hvis |
antallet af værdier ikke kan danne talpar uden noget tilovers. |
</translation> |
</message> |
<message> |
<source>createBezierLine(list, ["name"]) -> string |
|
Creates a new bezier curve and returns its name. The points for the bezier |
curve are stored in the list "list" in the following order: |
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
In the points list, x and y mean the x and y coordinates of the point and kx |
and ky meaning the control point for the curve. The coordinates are given in |
the current measurement units of the document (see UNIT constants). "name" |
should be a unique identifier for the object because you need this name for |
further access to that object. If "name" is not given Scribus will create one |
for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise ValueError if an insufficient number of points is passed or if |
the number of values passed don't group into points without leftovers. |
</source> |
<translation type="obsolete">createBezierLine(liste, ["navn"]) -> streng |
|
Laver en ny bezier kurve og returnerer dens navn. Bezier kurvens |
punkter er placeret i listen "liste" i følgende orden: |
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn, yn, kxn, kyn]. |
I listen med punkter betyder x og y koordinaterne for punktet og kx og ky er |
kontrolpunktet for kurven. Koordinaterne er givet i dokumentets nuværende |
måle-enhed (se UNIT konstanter). "navn" skal være et unikt navn for objektet, |
fordi du behøver dette navn for yderligere adgang til dette objekt. Hvis "navn" |
ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
Kan rejse ValueError hvis et utilstrækkeligt antal punkter er angivet eller |
hvis der er nogen tal tilovers. |
</translation> |
</message> |
<message> |
<source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
|
Creates a new pathText by merging the two objects "textbox" and |
"beziercurve" and returns its name. The coordinates are given in the current |
measurement unit of the document (see UNIT constants). "name" should be a |
unique identifier for the object because you need this name for further access |
to that object. If "name" is not given Scribus will create one for you. |
|
May raise NameExistsError if you explicitly pass a name that's already used. |
May raise NotFoundError if one or both of the named base object don't exist. |
</source> |
<translation type="obsolete">createPathText(x, y, "tekstboks", "bezierkurve", ["navn"]) -> streng |
|
Laver en ny sti-tekst ved at forene de to objekter "tekstboks" og |
"bezierkurve" og returnerer dens navn. Koordinaterne er givet i dokumentets |
nuværende måle-enhed (se UNIT konstanter). "navn" skal være et unikt navn |
for objektet, fordi du behøver dette navn for yderligere adgang til dette objekt. |
Hvis "navn" ikke er givet, så vil Scribus lave et for dig. |
|
Kan rejse NameExistsError hvis du angiver et navn, som allerede er brugt. |
Kan rejse NotFoundError hvis en eller begge navngive basis-objekter ikke eksisterer. |
</translation> |
</message> |
<message> |
<source>deleteObject(["name"]) |
|
Deletes the item with the name "name". If "name" is not given the currently |
selected item is deleted. |
</source> |
<translation type="obsolete">deleteObject(["navn"]) |
|
Sletter elementet med navnet "navn". Hvis "navn" ikke angives, |
så slettes det markerede element. |
</translation> |
</message> |
<message> |
<source>objectExists(["name"]) -> bool |
|
Test if an object with specified name really exists in the document. |
The optional parameter is the object name. When no object name is given, |
returns True if there is something selected. |
</source> |
<translation type="obsolete">objectExists(["navn"]) -> bool |
|
Undersøger om et objekt med navnet "navn" virkelig eksisterer i dokumentet. |
Den valgfri paramater er objekt navnet. Hvis "navn" ikke angives, så returneres |
"True" hvis et eller andet er markeret. |
</translation> |
</message> |
<message> |
<source>setStyle("style" [, "name"]) |
|
Apply the named "style" to the object named "name". If is no object name |
given, it's applied on the selected object. |
</source> |
<translation type="obsolete">setStyle("stil" [, "navn"]) |
|
Anvender stil på objektet "navn". Hvis "navn" ikke angives, så |
anvendes stilen på det markerede objekt. |
</translation> |
</message> |
<message> |
<source>getAllStyles() -> list |
|
Return a list of the names of all paragraph styles in the current document. |
</source> |
<translation type="obsolete">getAllStyles() -> liste |
|
Returnerer en liste af navne på alle afsnits-typografier i det aktive dokument. |
</translation> |
</message> |
<message> |
<source>currentPage() -> integer |
|
Returns the number of the current working page. Page numbers are counted from 1 |
upwards, no matter what the displayed first page number of your document is. |
</source> |
<translation type="obsolete">currentPage() -> integer |
|
Returnerer nummeret på den aktive side. Sidenummeret er talt fra 1 og |
opefter, uanset hvilket sidenummer den første side har fået. |
</translation> |
</message> |
<message> |
<source>redrawAll() |
|
Redraws all pages. |
</source> |
<translation type="obsolete">redrawAll() |
|
Gentegner alle sider. |
</translation> |
</message> |
<message> |
<source>savePageAsEPS("name") |
|
Saves the current page as an EPS to the file "name". |
|
May raise ScribusError if the save failed. |
</source> |
<translation type="obsolete">savePageAsEPS("navn") |
|
Gemmer den aktive side som en EPS til filen "navn" |
|
Kan rejse ScribusError hvis "gem" fejlede. |
</translation> |
</message> |
<message> |
<source>deletePage(nr) |
|
Deletes the given page. Does nothing if the document contains only one page. |
Page numbers are counted from 1 upwards, no matter what the displayed first |
page number is. |
|
May raise IndexError if the page number is out of range |
</source> |
<translation type="obsolete">deletePage(nr) |
|
Sletter den angivne side. Ingen ting slettes, hvis dokumentet kun indeholder en side. |
Sidenummeret er talt fra 1 og opefter, uanset hvilket sidenummer den første side har fået. |
|
Kan rejse IndexError hvis sidenummeret er uden for område |
</translation> |
</message> |
<message> |
<source>gotoPage(nr) |
|
Moves to the page "nr" (that is, makes the current page "nr"). Note that |
gotoPage doesn't (curently) change the page the user's view is displaying, it |
just sets the page that script commands will operates on. |
|
May raise IndexError if the page number is out of range. |
</source> |
<translation type="obsolete">gotoPage(nr) |
|
Flytter til siden "nr" (d.v.s. laver siden "nr" til den aktive). bemærk at |
gotoPage ændrer ikke (lige nu) den side som brugeren ser, den vælger |
kun den side, som script-kommandoer opererer på. |
|
Kan rejse IndexError hvis sidenummeret er uden for område. |
</translation> |
</message> |
<message> |
<source>pageCount() -> integer |
|
Returns the number of pages in the document. |
</source> |
<translation type="obsolete">pageCount() -> integer |
|
Returnerer antal sider i dokumentet. |
</translation> |
</message> |
<message> |
<source>getHGuides() -> list |
|
Returns a list containing positions of the horizontal guides. Values are in the |
document's current units - see UNIT_<type> constants. |
</source> |
<translation type="obsolete">getHGuides() -> liste |
|
Returnerer en liste med positionerne for de horisontale hjælpelinier. Værdierne er |
angivet i den aktuelle måle-enhed for dokumentet - se UNIT_<type> konstanter. |
</translation> |
</message> |
<message> |
<source>setHGuides(list) |
|
Sets horizontal guides. Input parameter must be a list of guide positions |
measured in the current document units - see UNIT_<type> constants. |
|
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
setHGuides([90,250]) # replace current guides entirely |
</source> |
<translation type="obsolete">setHGuides(liste) |
|
Sætter horisontale hjælpelinier. Input-parameter skal være en liste med hlælpeliniernes |
placeringer angivet i den aktuelle måle-enhed for dokumentet - se UNIT_<type> konstanter. |
|
Eksempel: setHGuides(getHGuides() + [200.0, 210.0] # tilføjer ny hjælpelinie uden nogen mistet |
setHGuides([90,250]) # Erstatter nuværende hjælpelinier fuldstændigt |
</translation> |
</message> |
<message> |
<source>getVGuides() |
|
See getHGuides. |
</source> |
<translation type="obsolete">getVGuides() |
|
Se getHGuides. |
</translation> |
</message> |
<message> |
<source>setVGuides() |
|
See setHGuides. |
</source> |
<translation type="obsolete">setVGuides() |
|
Se setHGuides. |
</translation> |
</message> |
<message> |
<source>getPageSize() -> tuple |
|
Returns a tuple with page dimensions measured in the document's current units. |
See UNIT_<type> constants and getPageMargins() |
</source> |
<translation type="obsolete">getPageSize() -> tuple |
|
Returnerer en tuple med side-dimensioner målt i dokumentets aktuelle måle-enhed. |
Se UNIT_<type> konstanter og getPageMargins() |
</translation> |
</message> |
<message> |
<source>getPageItems() -> list |
|
Returns a list of tuples with items on the current page. The tuple is: |
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
means that object named 'Text1' is a text frame (type 4) and is the first at |
the page... |
</source> |
<translation type="obsolete">getPageItems() -> liste |
|
Returnerer en liste af tupler med elementer på den aktive side. Tuplen er: |
(navn, objekt-type, orden) F.eks. [('Tekst1', 4, 0), ('Billed1', 2, 1)]. |
Det betyder objektet 'Tekst1' er en tekst-ramme (type 4) og er den |
første på siden... |
</translation> |
</message> |
<message> |
<source>setFillColor("color", ["name"]) |
|
Sets the fill color of the object "name" to the color "color". "color" |
is the name of one of the defined colors. If "name" is not given the |
currently selected item is used. |
</source> |
<translation type="obsolete">setFillColor("farve", ["navn"]) |
|
Sætter fyld-farven på objektet "navn" til farven "farve". "farve" |
er navnet på en af de definerede farver. Hvis "navn" ikke angives, så |
bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setLineColor("color", ["name"]) |
|
Sets the line color of the object "name" to the color "color". If "name" |
is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setLineColor("farve", ["navn"]) |
|
Sætter linie-farven på objektet "navn" til farven "farve". "farve" |
er navnet på en af de definerede farver. Hvis "navn" ikke angives, så |
bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setLineWidth(width, ["name"]) |
|
Sets line width of the object "name" to "width". "width" must be in the |
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
given the currently selected item is used. |
|
May raise ValueError if the line width is out of bounds. |
</source> |
<translation type="obsolete">setLineWidth(bredde, ["navn"]) |
|
Sætter linie-bredden på objektet "navn" til "bredde". "bredde" skal være i |
området fra 0.0 til 12.0 inklusivt, og er angivet i punkter. Hvis "navn" ikke |
angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setLineShade(shade, ["name"]) |
|
Sets the shading of the line color of the object "name" to "shade". |
"shade" must be an integer value in the range from 0 (lightest) to 100 |
(full color intensity). If "name" is not given the currently selected item |
is used. |
|
May raise ValueError if the line shade is out of bounds. |
</source> |
<translation type="obsolete">setLineShade(farvemætning, ["navn"]) -> integer |
|
Sætter farvemætningen på linie-farven på objektet "navn" til "farvemætning". |
"farvemætning" skal være en integer værdi i området fra 0 (lysest) til 100 |
(fuld farvemætning). Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse ValueError hvis farvemætningen er uden for tilladte område. |
</translation> |
</message> |
<message> |
<source>setLineJoin(join, ["name"]) |
|
Sets the line join style of the object "name" to the style "join". |
If "name" is not given the currently selected item is used. There are |
predefined constants for join - JOIN_<type>. |
</source> |
<translation type="obsolete">setLineJoin(samling, ["navn"]) |
|
Sætter typen af liniesamling på objektet "navn" til typen "samling". |
Hvis "navn" ikke angives, så bruges det markerede element. Der er |
predefinerede konstanter for samlingen - JOIN_<type>. |
</translation> |
</message> |
<message> |
<source>setLineEnd(endtype, ["name"]) |
|
Sets the line cap style of the object "name" to the style "cap". |
If "name" is not given the currently selected item is used. There are |
predefined constants for "cap" - CAP_<type>. |
</source> |
<translation type="obsolete">setLineEnd(endetype, ["navn"]) |
|
Sætter typen af linieende på objektet "navn" til typen "endetype" . |
Hvis "navn" ikke angives, så bruges det markerede element. Der er |
predefinerede konstanter for endetyperne - CAP_<type>. |
</translation> |
</message> |
<message> |
<source>setLineStyle(style, ["name"]) |
|
Sets the line style of the object "name" to the style "style". If "name" |
is not given the currently selected item is used. There are predefined |
constants for "style" - LINE_<style>. |
</source> |
<translation type="obsolete">setLineStyle(stil, ["navn"]) |
|
Sætter linie-stil for objektet "navn" til stilen "stil". Hvis "navn" ikke |
angives, så bruges det markerede element. Der er predefinerede |
konstanter for "stil" - LINE_<type>. |
</translation> |
</message> |
<message> |
<source>setFillShade(shade, ["name"]) |
|
Sets the shading of the fill color of the object "name" to "shade". |
"shade" must be an integer value in the range from 0 (lightest) to 100 |
(full Color intensity). If "name" is not given the currently selected |
Item is used. |
|
May raise ValueError if the fill shade is out of bounds. |
</source> |
<translation type="obsolete">setFillShade(farvemætning, ["navn"]) |
|
Sætter farvemætningen på fyld-farven på objektet "navn" til "farvemætning". |
"farvemætning" skal være en integer værdi i området fra 0 (lysest) til 100 |
(fuld farvemætning). Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse ValueError hvis farvemætningen er uden for tilladte område. |
</translation> |
</message> |
<message> |
<source>setCornerRadius(radius, ["name"]) |
|
Sets the corner radius of the object "name". The radius is expressed |
in points. If "name" is not given the currently selected item is used. |
|
May raise ValueError if the corner radius is negative. |
</source> |
<translation type="obsolete">setCornerRadius(radius, ["navn"]) |
|
Sætter radius på hjørnerne på objektet "navn". Radius er udtrykt |
i punkter. Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse ValueError hvis hjørne-radius er negativ. |
</translation> |
</message> |
<message> |
<source>setMultiLine("namedStyle", ["name"]) |
|
Sets the line style of the object "name" to the named style "namedStyle". |
If "name" is not given the currently selected item is used. |
|
May raise NotFoundError if the line style doesn't exist. |
</source> |
<translation type="obsolete">setMultiLine("navngivetStil", ["navn"]) |
|
sætter linie-stil på objektet "navn" til navngivet stil "navngivetStil". |
Hvis "navn" ikke angives, så bruges det markerede element. |
|
Kan rejse NotFoundError hvis linie-stilen ikke eksisterer. |
</translation> |
</message> |
<message> |
<source>getFont(["name"]) -> string |
|
Returns the font name for the text frame "name". If this text frame |
has some text selected the value assigned to the first character |
of the selection is returned. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">getFont(["navn"]) -> streng |
|
Returnerer font-navnet for tekst-rammen "navn". Hvis denne tekst-ramme |
har noget tekst markeret, så returneres værdien af det første tegn i den |
markerede tekst. Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getTextLength(["name"]) -> integer |
|
Returns the length of the text in the text frame "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getTextLength(["navn"]) -> integer |
|
Returnerer længden på teksten i tekst-rammen "navn". |
Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getText(["name"]) -> string |
|
Returns the text of the text frame "name". If this text frame has some text |
selected, the selected text is returned. All text in the frame, not just |
currently visible text, is returned. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">getText(["navn"]) -> streng |
|
Returnerer teksten fra tekst-rammen "navn". Hvis denne tekst-ramme har |
noget tekst markeret, så returneres den markerede tekst. Al tekst i rammen, |
ikke kun det der lige nu ses, returneres. Hvis "navn" ikke er givet, så bruges |
det markerede element. |
</translation> |
</message> |
<message> |
<source>getAllText(["name"]) -> string |
|
Returns the text of the text frame "name" and of all text frames which are |
linked with this frame. If this textframe has some text selected, the selected |
text is returned. If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">getAllText(["navn"]) -> streng |
|
Returnerer teksten fra tekst-rammen "navn" og alle tekst-rammer, som er lænket |
med denne ramme. Hvis denne tekst-ramme har noget tekst markeret, så returneres |
den markerede tekst. Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineSpacing(["name"]) -> float |
|
Returns the line spacing ("leading") of the text frame "name" expressed in |
points. If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getLineSpacing(["navn"]) -> komma-tal |
|
Returnerer linie-afstanden ("leading") i tekst-rammen "navn" udtrykt i punkter. |
Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getColumnGap(["name"]) -> float |
|
Returns the column gap size of the text frame "name" expressed in points. If |
"name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getColumnGap(["navn"]) -> komma-tal |
|
Returnerer kolonne-afstanden i tekst-rammen "navn" udtrykt i punkter. |
Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getColumns(["name"]) -> integer |
|
Gets the number of columns of the text frame "name". If "name" is not |
given the currently selected item is used. |
</source> |
<translation type="obsolete">getColumns(["navn"]) -> integer |
|
Henter antallet af kolonner i tekst-rammen "navn". Hvis "navn" |
ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setText("text", ["name"]) |
|
Sets the text of the text frame "name" to the text of the string "text". |
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
for more details. If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">setText("tekst", ["navn"]) |
|
Sætter teksten i tekst-rammen "navn" til teksten fra strengen "tekst". |
Teksten skal være UTF8 kodet - brug f.eks. unicode(tekst, 'iso-8859-2'). se FAQ'en |
for flere detaljer. Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setFont("font", ["name"]) |
|
Sets the font of the text frame "name" to "font". If there is some text |
selected only the selected text is changed. If "name" is not given the |
currently selected item is used. |
|
May throw ValueError if the font cannot be found. |
</source> |
<translation type="obsolete">setFont("font", ["navn"]) |
|
Sætter fonten i tekst-rammen "navn" til "font". Hvis der er markeret nogen |
tekst, vil kun den markerede tekst blive ændret. Hvis "navn" ikke er givet, |
så bruges det markerede element. |
|
Kan rejse ValueError hvis fonten ikke findes. |
</translation> |
</message> |
<message> |
<source>setFontSize(size, ["name"]) |
|
Sets the font size of the text frame "name" to "size". "size" is treated |
as a value in points. If there is some text selected only the selected text is |
changed. "size" must be in the range 1 to 512. If "name" is not given the |
currently selected item is used. |
|
May throw ValueError for a font size that's out of bounds. |
</source> |
<translation type="obsolete">setFontSize(størrelse, ["navn"]) |
|
Sætter font-størrelsen i tekst-rammen "navn" til "størrelse". "størrelse" |
angives i punkter. Hvis der er markeret nogen tekst, vil kun den markerede |
tekst blive ændret. "størrelse" skal være indenfor området 1 til 512. Hvis "navn" |
ikke er givet, så bruges det markerede element. |
|
Kan rejse ValueError for en fontstørrelse der er uden for gyldigt område. |
</translation> |
</message> |
<message> |
<source>setLineSpacing(size, ["name"]) |
|
Sets the line spacing ("leading") of the text frame "name" to "size". |
"size" is a value in points. If "name" is not given the currently selected |
item is used. |
|
May throw ValueError if the line spacing is out of bounds. |
</source> |
<translation type="obsolete">setLineSpacing(størrelse, ["navn"]) |
|
Sætter linie-afstanden ("leading") i tekst-rammen "navn" til "størrelse". |
"størrelse" er angivet i punkter. Hvis "navn" ikke er givet, så bruges |
det markerede element. |
|
Kan rejse ValueError hvis linie-afstanden er uden for gyldigt område. |
</translation> |
</message> |
<message> |
<source>setColumnGap(size, ["name"]) |
|
Sets the column gap of the text frame "name" to the value "size". If |
"name" is not given the currently selected item is used. |
|
May throw ValueError if the column gap is out of bounds (must be positive). |
</source> |
<translation type="obsolete">setColumnGap(størrelse, ["navn"]) |
|
Sætter kolonne-afstanden i tekst-rammen "navn" til værdien "størrelse". |
Hvis "navn" ikke er givet, så bruges det markerede element. |
|
Kan rejse ValueError hvis kolonne-afstanden er uden for gyldigt område (skal være positiv). |
</translation> |
</message> |
<message> |
<source>setColumns(nr, ["name"]) |
|
Sets the number of columns of the text frame "name" to the integer "nr". |
If "name" is not given the currently selected item is used. |
|
May throw ValueError if number of columns is not at least one. |
</source> |
<translation type="obsolete">setColumns(nr, ["navn"]) |
|
Sætter antal kolonner i tekst-rammen "navn" til heltallet "nr". |
Hvis "navn" ikke er givet, så bruges det markerede element. |
|
Kan rejse ValueError hvis antal kolonner ikke er mindst 1. |
</translation> |
</message> |
<message> |
<source>setTextAlignment(align, ["name"]) |
|
Sets the text alignment of the text frame "name" to the specified alignment. |
If "name" is not given the currently selected item is used. "align" should |
be one of the ALIGN_ constants defined in this module - see dir(scribus). |
|
May throw ValueError for an invalid alignment constant. |
</source> |
<translation type="obsolete">setTextAlignment(justering, ["navn"]) |
|
Sætter tekst-justering i tekst-rammen "navn" til angivet justering. |
Hvis "navn" ikke er givet, så bruges det markerede element. "justering" |
skal være en af ALIGN_konstanterne defineret i dette modul - se dir(scribus). |
|
Kan rejse ValueError for en ugyldig ALIGN_konstant. |
</translation> |
</message> |
<message> |
<source>deleteText(["name"]) |
|
Deletes any text in the text frame "name". If there is some text selected, |
only the selected text will be deleted. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">deleteText(["navn"]) |
|
Sletter al tekst i tekst-rammen "navn". Hvis der er markeret noget tekst, så |
slettes kun den markerede tekst. Hvis "navn" ikke er givet, så bruges |
det markerede element. |
</translation> |
</message> |
<message> |
<source>setTextColor("color", ["name"]) |
|
Sets the text color of the text frame "name" to the color "color". If there |
is some text selected only the selected text is changed. If "name" is not |
given the currently selected item is used. |
</source> |
<translation type="obsolete">setTextColor("farve", ["navn"]) |
|
Sætter tekst-farven i tekst-rammen "navn" til farven "farve". Hvis der |
er markeret nogen tekst, så vil kun den markerede tekst blive ændret. |
Hvis "navn" ikke er givet, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setTextStroke("color", ["name"]) |
|
Set "color" of the text stroke. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">setTextStroke("farve", ["navn"]) |
|
Sætter tekstens streg-farve. Hvis "navn" ikke er givet, |
så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setTextShade(shade, ["name"]) |
|
Sets the shading of the text color of the object "name" to "shade". If |
there is some text selected only the selected text is changed. "shade" must |
be an integer value in the range from 0 (lightest) to 100 (full color |
intensity). If "name" is not given the currently selected item is |
used. |
</source> |
<translation type="obsolete">setTextShade(farvemætning, ["navn"]) |
|
Sætter farvemætningen på tekst-farven på objektet "navn" til "farvemætning". |
Hvis der er markeret nogen tekst, så vil kun den markerede tekst blive ændret. |
"farvemætning" skal være en integer værdi i området fra 0 (lysest) til 100 |
(fuld farvemætning). Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>linkTextFrames("fromname", "toname") |
|
Link two text frames. The frame named "fromname" is linked to the |
frame named "toname". The target frame must be an empty text frame |
and must not link to or be linked from any other frames already. |
|
May throw ScribusException if linking rules are violated. |
</source> |
<translation type="obsolete">linkTextFrames("franavn", "tilnavn") |
|
Sammenkæder to tekst-rammer. Rammen "franavn" bliver sammenkædet |
med rammen "tilnavn". Mål-rammen skal være en tom tekst-ramme og må |
ikke være sammenkædet med nogen anden ramme. |
</translation> |
</message> |
<message> |
<source>unlinkTextFrames("name") |
|
Remove the specified (named) object from the text frame flow/linkage. If the |
frame was in the middle of a chain, the previous and next frames will be |
connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
|
May throw ScribusException if linking rules are violated. |
</source> |
<translation type="obsolete">unlinkTextFrames("navn") |
|
Fjerner objektet "navn" fra sammenkædede tekstrammer. Hvis rammen |
var i midten af en kæde, så vil den foregående og den efterfølgende ramme |
blive forbundet, f.eks. 'a->b->c' bliver 'a->c' når du kalder unlinkTextFrames(b). |
|
Kan rejse ScribusException hvis sammenkædnings-regler bliver overtrådt. |
</translation> |
</message> |
<message> |
<source>traceText(["name"]) |
|
Convert the text frame "name" to outlines. If "name" is not given the |
currently selected item is used.</source> |
<translation type="obsolete">traceText(["navn"]) |
|
Konverterer fonte i tekst-rammen "navn" til kurver. Hvis "navn" ikke angives, |
så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>progressReset() |
|
Cleans up the Scribus progress bar previous settings. It is called before the |
new progress bar use. See progressSet. |
</source> |
<translation type="obsolete">progressReset() |
|
Rydder op i Scrbus fremgangs-målererens tidligere indstillinger. Den kaldes før næste |
brug af fremgangs-måleren. Se progressSet. |
</translation> |
</message> |
<message> |
<source>progressTotal(max) |
|
Sets the progress bar's maximum steps value to the specified number. |
See progressSet. |
</source> |
<translation type="obsolete">progressTotal(max) |
|
Sætter fremgangs-målerens maksimale trin-værdi til det angivne tal. |
Se progressSet. |
</translation> |
</message> |
<message> |
<source>progressSet(nr) |
|
Set the progress bar position to "nr", a value relative to the previously set |
progressTotal. The progress bar uses the concept of steps; you give it the |
total number of steps and the number of steps completed so far and it will |
display the percentage of steps that have been completed. You can specify the |
total number of steps with progressTotal(). The current number of steps is set |
with progressSet(). The progress bar can be rewound to the beginning with |
progressReset(). [based on info taken from Trolltech's Qt docs] |
</source> |
<translation type="obsolete">progressSet(nr) |
|
Sætter fremgangs-måler positionen til "nr", en værdi relativ til det tidligere kald af |
progressTotal. Fremgangs-måleren bruger konceptet om trin; du giver den det totale |
antal trin og antal trin nået indtil nu, og den vil så vise den procentvise værdi af de trin |
der er gjort færdige. Du kan angive det totale antal trin med progressTotal(). De |
nuværende antal trin er angivet med progressSet(). Fremgangs-måleren kan spoles |
tilbage til begyndelsen med progressReset(). [Baseret på info fra Trolltech's Qt docs] |
</translation> |
</message> |
<message> |
<source>setCursor() |
|
[UNSUPPORTED!] This might break things, so steer clear for now. |
</source> |
<translation type="obsolete">setCursor() |
|
[IKKE UNDERSTØTTET!] Denne kan få tingene til at bryde sammen, så |
undgå at bruge den lige nu. |
</translation> |
</message> |
<message> |
<source>docChanged(bool) |
|
Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
useful to call this procedure when you're changing the document, because Scribus |
won't automatically notice when you change the document using a script. |
</source> |
<translation type="obsolete">docChanged(bool) |
|
Aktiverer/deaktiverer "gem-ikonet" i Scribus værktøjslinie og "Gem" i fil-menuen. |
Det er brugbart at kalde denne procedure, når du ændrer dokumentet, fordi Scribus |
ikke automatisk opdager, når du har ændret dokumentet ved at bruge en script. |
</translation> |
</message> |
<message> |
<source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
|
Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
Both `scaletoframe' and `proportional' are boolean. |
|
May raise WrongFrameTypeError. |
</source> |
<translation type="obsolete">setScaleImageToFrame(skalertilramme, proportional=None, name=<markering>) |
|
Sætter skalér til ramme på den markerede eller speciferede billed-ramme til `scaletoframe'. |
Hvis proportional er specificeret, så sættes fast bredde/højde forholdet til `proportionelt'. |
Både `skalertilramme' og `proportional' er boolsk. |
|
Kan rejse WrongFrameTypeError. |
</translation> |
</message> |
<message> |
<source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
|
Creates an image preview of font "name" with given text "sample" and size. |
If "filename" is not "", image is saved into "filename". Otherwise |
image data is returned as a string. The optional "format" argument |
specifies the image format to generate, and supports any format allowed |
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
|
May raise NotFoundError if the specified font can't be found. |
May raise ValueError if an empty sample or filename is passed. |
</source> |
<translation type="obsolete">renderFont("navn", "filenavn", "eksempel", størrelse, format="PPM") -> bool |
|
Laver en billed-visning af fonten "navn" med teksten "eksempel" og størrelse. |
Hvis "filnavn" ikke er "", så bliver billedet gemt i "filnavn". Ellers returneres |
billed-data som en streng. Det valgfri "format" argument specificerer billed-formatet, |
der skal genereres, og støtter de formater, som er tilladt af QPixmap.save(). |
Almindelige formater er PPM, JPEG, PNG og XPM. |
|
Kan rejse NotFoundError hvis den angivne font ikke findes. |
Kan rejse ValueError hvis "eksempel" eller "filnavn" er tomt. |
</translation> |
</message> |
<message> |
<source>isLayerPrintable("layer") -> bool |
|
Returns whether the layer "layer" is printable or not, a value of True means |
that the layer "layer" can be printed, a value of False means that printing |
the layer "layer" is disabled. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerPrintable("lag") -> bool |
|
Returnerer hvorvidt laget "lag" kan udskrives eller ej, værdien "True" |
betyder, at laget "lag" kan udskrives, værdien "False" betyder, at laget |
"lag" ikke kan udskrives. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>setPDFBookmark("toggle", ["name"]) |
|
Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">setPDFBookmark("til/fra", ["navn"] |
|
Sætter hvorvidt (til/fra = 1) tekstrammen "navn" et et bogmærke eller ej. |
Hvis "navn" ikke er givet, så bruges det markerede element. |
|
Kan rejse WrongFrameTypeError, hvis målrammen ikke er en tekst-ramme |
</translation> |
</message> |
<message> |
<source>isPDFBookmark(["name"]) -> bool |
|
Returns true if the text frame "name" is a PDF bookmark. |
If "name" is not given the currently selected item is used. |
|
May raise WrongFrameTypeError if the target frame is not a text frame |
</source> |
<translation type="obsolete">isPDFBookmark(["navn"]) -> bool |
|
Returnerer "true" hvis tekst-rammen "navn" er et PDF bogmærke. |
Hvis "navn" ikke er givet, så bruges det markerede element. |
|
Kan rejse WrongFrameTypeError, hvis målrammen ikke er en tekst-ramme |
</translation> |
</message> |
<message> |
<source>getPageMargins() |
|
Returns the page margins as a (top, left, right, bottom) tuple in the current |
units. See UNIT_<type> constants and getPageSize(). |
</source> |
<translation type="obsolete">getPageMargins() |
|
Returnerer side margener som en (top, venstre, højre, bund) tuple i dokumentets |
aktuelle måle-enhed. Se UNIT_<type> konstanter og getPageSize(). |
</translation> |
</message> |
<message> |
<source>getColorAsRGB("name") -> tuple |
|
Returns a tuple (R,G,B) containing the three color components of the |
color "name" from the current document, converted to the RGB color |
space. If no document is open, returns the value of the named color |
from the default document colors. |
|
May raise NotFoundError if the named color wasn't found. |
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">getColorAsRGB("navn") -> tuple |
|
Returnerer en tuple (R, G, B), som indeholder de tre farvekomponenter |
af farven "navn" fra det aktive dokument. Konverteret til RGB farve rum. |
Hvis ingen dokumenter er åben, så returneres værdien af den navngivne |
farve fra standard dokument farver. |
|
Kan rejse NotFoundError hvis den navngivne farve ikke findes. |
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
|
Shows a File Open dialog box with the caption "caption". Files are filtered |
with the filter string "filter". A default filename or file path can also |
supplied, leave this string empty when you don't want to use it. A value of |
True for haspreview enables a small preview widget in the FileSelect box. When |
the issave parameter is set to True the dialog acts like a "Save As" dialog |
otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
the dialog shows and returns only directories. The default for all of the |
opional parameters is False. |
|
The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
For example 'Images (*.png *.xpm *.jpg)'. |
|
Refer to the Qt-Documentation for QFileDialog for details on filters. |
|
Example: fileDialog('Open input', 'CSV files (*.csv)') |
Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
</source> |
<translation type="obsolete">fileDialog("overskrift", ["filter", "standardnavn" ,har-previsning, er-gem, er-mappe]) -> streng med fil-navn |
|
Viser en "Fil-åbn" dialog-boks med overskriften "overskrift". Filer er filtreret |
med filter-strengen "filter". Et standard fil-navn eller fil-sti kan også |
angives, lad denne streng være tom, når du ikke ønsker at bruge den. |
Hvis har-previsning er "TRUE" aktiverer et lille visningsvindue i fil-valg-boksen. |
Når er-gem værdien er sat til "True", så fungerer dialogboksen som en "Gem som" |
dialog, ellers fungerer den som en "Fil åbn" dialog. Når er-mappe værdien er |
"True", så viser og returnerer dialogboksen kun mapper. Standardværdien for |
alle de valgfri parametre er "False". |
|
Filteret, hvis specificeret, har formen 'kommentar (*.type *.type2 ...)'. |
For eksempel 'billeder' (*.png *.xpm *.jpg)'. |
|
Se Qt-dokumentationen over QFileDialog for detaljer om filtre. |
|
Eksempel: fileDialog('Åbn input', 'CSV filer (*.csv)') |
Eksempel: fileDialog('Gem report', standardnavn='report.txt', er-gem=True) |
</translation> |
</message> |
<message> |
<source>getPropertyCType(object, property, includesuper=True) |
|
Returns the name of the C type of `property' of `object'. See getProperty() |
for details of arguments. |
|
If `includesuper' is true, search inherited properties too. |
</source> |
<translation type="obsolete">getPropertyCType(objekt, egenskab, inkludérsuper=True) |
|
Returnerer navnet på `egenskab'ens C type i det givne `objekt'. Se getProperty() |
|
Hvis `inkludérsuper' er `TRUE', søges også nedarvede egenskaber. |
</translation> |
</message> |
<message> |
<source>getPropertyNames(object, includesuper=True) |
|
Return a list of property names supported by `object'. |
If `includesuper' is true, return properties supported |
by parent classes as well. |
</source> |
<translation type="obsolete">getPropertyNames(objekt, inkludérsuper=True) |
|
Returnerer en liste af egenskabs navne understøttet af `objekt'. |
Hvis `inkludérsuper' er `TRUE', returneres også navnene på egenskaber |
understøttet af forældreklassen. |
</translation> |
</message> |
<message> |
<source>getProperty(object, property) |
|
Return the value of the property `property' of the passed `object'. |
|
The `object' argument may be a string, in which case the named PageItem |
is searched for. It may also be a PyCObject, which may point to any |
C++ QObject instance. |
|
The `property' argument must be a string, and is the name of the property |
to look up on `object'. |
|
The return value varies depending on the type of the property. |
</source> |
<translation type="obsolete">getProperty(objekt, egenskab) |
|
Returnerer værdien af egenskab `egenskab' i det givne `objekt'. |
|
Argumentet `object' kan være en streng, og der vil da blive søgt efter det |
navngivne Sideelement. Det kan også være et PyObjekt, som kan pege på |
et hvilket som helst C++ QObjekt tilfælde. |
|
Argumentet `egenskab' skal være en streng, og er navnet på den egenskab |
der søges efter i `objekt'. |
|
Værdien der returneres er forskellig afhængig af egenskabens type. |
</translation> |
</message> |
<message> |
<source>setProperty(object, property, value) |
|
Set `property' of `object' to `value'. If `value' cannot be converted to a type |
compatible with the type of `property', an exception is raised. An exception may |
also be raised if the underlying setter fails. |
|
See getProperty() for more information. |
</source> |
<translation type="obsolete">setProperty(objekt, egenskab, værdi) |
|
Sætter `egenskab' af `objekt' til `værdi'. Hvis `værdi' ikke kan konverteres til en type |
der er forenelig med typen af `egenskab', vil en indsigelse blive rejst. En indsigelse |
kan også blive rejst, hvis den grundlæggende sætter mislykkes. |
|
Se getProperty() for mere information. |
</translation> |
</message> |
<message> |
<source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
|
Return a list of children of `object', possibly restricted to children |
of class named `ofclass' or children named `ofname'. If `recursive' is true, |
search recursively through children, grandchildren, etc. |
|
See QObject::children() in the Qt docs for more information. |
</source> |
<translation type="obsolete">getChildren(objekt, afklasse=None, afnavn=None, regexpmatch=False, rekursiv=True) |
|
Returnerer en liste af børn af `objekt', muligvis begrænset til børn |
af klasse med navnet `afklasse' eller børn med navnet `afnavn'. Hvis `rekursiv' |
er True, søges rekursivt gennem børn, børnebørn, etc. |
|
See QObject::children() i Qt dokumentationen for mere information. |
</translation> |
</message> |
<message> |
<source>getChild(object, childname, ofclass=None, recursive=True) |
|
Return the first child of `object' named `childname', possibly restricting |
the search to children of type name `ofclass'. If `recursive' is true, |
search recursively through children, grandchildren, etc. |
</source> |
<translation type="obsolete">getChild(objekt, barnenavn, afklasse=None, rekursiv=True) |
|
Returnerer det første barn af `objekt' med navnet `barnenavn', søgningen |
er muligvis begrænset til børn af klasse med navnet `afklasse'. Hvis `rekursiv' |
er True, søges rekursivt gennem børn, børnebørn, etc. |
</translation> |
</message> |
<message> |
<source>selectText(start, count, ["name"]) |
|
Selects "count" characters of text in the text frame "name" starting from the |
character "start". Character counting starts at 0. If "count" is zero, any |
text selection will be cleared. If "name" is not given the currently |
selected item is used. |
|
May throw IndexError if the selection is outside the bounds of the text. |
</source> |
<translation type="obsolete">selectText(start, antal, ["navn"]) |
|
Markerer "antal" tegn af teksten i tekst-rammen "navn" startende |
fra tegn "start". Tegn tælling starter ved 0. Hvis "antal" er nul, vil |
enhver tekstmarkering blive nulstillet. Hvis "navn" ikke er givet, så bruges |
det markerede element. |
|
Kan rejse IndexError hvis hvis markeringen er sat udenfor teksten. |
</translation> |
</message> |
<message> |
<source>textOverflows(["name", nolinks]) -> integer |
|
Returns the actual number of overflowing characters in text frame "name". |
If is nolinks set to non zero value it takes only one frame - it doesn't |
use text frame linking. Without this parameter it search all linking chain. |
|
May raise WrongFrameTypeError if the target frame is not an text frame |
</source> |
<translation type="obsolete">textOverflows(["navn", ingenlinks]) -> integer |
|
Returnerer det faktiske antal skrifttegn der overløber i tekstramme "navn". |
Hvis ingenlinks er sat til andet end nul tages kun en ramme - der bruger ikke |
sammenkædning af tekstrammer. Uden denne parameter søges igennem alle |
sammenkædede tekstrammer. |
|
Kan rejse WrongFrameTypeError hvis den givne ramme ikke er en tekstramme |
</translation> |
</message> |
<message> |
<source>newStyleDialog() -> string |
|
Shows 'Create new paragraph style' dialog. Function returns real |
style name or None when user cancels the dialog. |
</source> |
<translation type="obsolete">newStyleDialog() -> streng |
|
Viser 'Lav ny afsnits typografi' vindue. Funktionen returnerer det rigtige |
typografi navn eller Intet når bruger annullerer vinduet. |
</translation> |
</message> |
<message> |
<source>newDoc(size, margins, orientation, firstPageNumber, |
unit, facingPages, firstSideLeft) -> bool |
|
WARNING: Obsolete procedure! Use newDocument instead. |
|
Creates a new document and returns true if successful. The parameters have the |
following meaning: |
|
size = A tuple (width, height) describing the size of the document. You can |
use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
|
margins = A tuple (left, right, top, bottom) describing the document |
margins |
|
orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
|
firstPageNumer = is the number of the first page in the document used for |
pagenumbering. While you'll usually want 1, it's useful to have higher |
numbers if you're creating a document in several parts. |
|
unit: this value sets the measurement units used by the document. Use a |
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
facingPages = FACINGPAGES, NOFACINGPAGES |
|
firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
|
The values for width, height and the margins are expressed in the given unit |
for the document. PAPER_* constants are expressed in points. If your document |
is not in points, make sure to account for this. |
|
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
FACINGPAGES, FIRSTPAGERIGHT) |
</source> |
<translation type="obsolete">newDoc(størrelse, margener, retning, førsteSideNummer, |
måle-enhed, modståendeSider, førsteSideVenstre) -> bool |
|
ADVARSEL: Forældet procedure! brug newDocument i stedet for. |
|
Laver et Nyt dokument og returnerer "true" hvis det lykkedes. Parametrene har |
følgende betydning: |
|
størrelse = A tuple (bredde, højde) beskriver størrelsen af dokumentet. du kan |
bruge predefinerede constanter med navnet PAPER_<paper_type> f.eks. PAPER_A4 etc. |
|
margener = En tuple (venstre, højre, top, bund) beskriver documentets margener |
|
retning = sidens retning - constanter PORTRAIT, LANDSCAPE |
|
førsteSideNummer = er nummeret på den første side i dokumentet brugt for |
side-nummerering. Selvom værdien oftest er 1, så er der nogen gange brug for |
et højere nummer, når et dokument består af flere dele. |
|
enhed: denne værdi sætter måle-enheden, som bruges i dokumentet. Brug en |
predefineret constant for dette, en af: UNIT_INCHES, UNIT_MILLIMETERS, |
UNIT_PICAS, UNIT_POINTS. |
|
modståendeSider = FACINGPAGES, NOFACINGPAGES |
|
førsteSideVenstre = FIRSTPAGELEFT, FIRSTPAGERIGHT |
|
Værdierne for bredde, højde og margener er udtrykt i den givne måle-enhed |
for dokumentet. PAPER_* constanter er udtrykt i punkter. Hvis dit dokument |
ikke er i punkter, så sørg for at tage højde for dette. |
|
eksempel: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
FACINGPAGES, FIRSTPAGERIGHT)</translation> |
</message> |
<message> |
<source>zoomDocument(double) |
|
Zoom the document in main GUI window. Actions have whole number |
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
</source> |
<translation type="obsolete">zoomDocument(dobbelt) |
|
Zoom dokumentet i hoved GUI vinduet. Funktionen bruger heltals-værdier |
som 20.0, 100.0, etc. Zoom så siden fylder vinduet bruger -100 som mærke. |
</translation> |
</message> |
<message> |
<source>closeMasterPage() |
|
Closes the currently active master page, if any, and returns editing |
to normal. Begin editing with editMasterPage(). |
</source> |
<translation type="obsolete">closeMasterPage() |
|
Lukker den aktive masterside, hvis der er nogen, og returnerer |
redigering til normal. Begynd redigering med editMasterPage(). |
</translation> |
</message> |
<message> |
<source>masterPageNames() |
|
Returns a list of the names of all master pages in the document. |
</source> |
<translation type="obsolete">masterPageNames() |
|
Returnerer en liste af navnene på alle mastersider i dokumentet. |
</translation> |
</message> |
<message> |
<source>editMasterPage(pageName) |
|
Enables master page editing and opens the named master page |
for editing. Finish editing with closeMasterPage(). |
</source> |
<translation type="obsolete">editMasterPage(sideNavn) |
|
Aktiverer redigering af masterside og åbner den navngivne masterside |
for redigering. Afslut redigering med closeMasterPage(). |
</translation> |
</message> |
<message> |
<source>createMasterPage(pageName) |
|
Creates a new master page named pageName and opens it for |
editing. |
</source> |
<translation type="obsolete">createMasterPage(sideNavn) |
|
Laver en masterside med navnet sideNavn og åbner den for |
redigering. |
</translation> |
</message> |
<message> |
<source>deleteMasterPage(pageName) |
|
Delete the named master page. |
</source> |
<translation type="obsolete">deleteMasterPage(sideNavn) |
|
Sletter den navngivne masterside. |
</translation> |
</message> |
<message> |
<source>setInfo("author", "info", "description") -> bool |
|
Sets the document information. "Author", "Info", "Description" are |
strings. |
</source> |
<translation type="obsolete">setInfo("forfatter", "info", "beskrivelse") -> bool |
Sætter dokument-informationen. "forfatter", "info", "beskrivelse" er |
strenge. |
</translation> |
</message> |
<message> |
<source>duplicateObject(["name"]) -> string |
|
creates a Duplicate of the selected Object (or Selection Group). |
</source> |
<translation type="obsolete">duplicateObject(["navn"]) -> string |
|
Laver en dublet at det valgte objekt (eller valgt gruppe). |
</translation> |
</message> |
<message> |
<source>getFillTransparency(["name"]) -> float |
|
Returns the fill transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getFillTransparency(["navn"]) -> komma-tal |
|
Returnerer fyld gennemsigtigheden for objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getFillBlendmode(["name"]) -> integer |
|
Returns the fill blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getFillBlendmode(["navn"]) -> heltal |
|
Returnerer fyld blandindings-tilstanden af objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineTransparency(["name"]) -> float |
|
Returns the line transparency of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getLineTransparency(["navn"]) -> komma-tal |
|
Returnerer liniens gennemsigtighed af objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>getLineBlendmode(["name"]) -> integer |
|
Returns the line blendmode of the object "name". If "name" |
is not given the currently selected Item is used. |
</source> |
<translation type="obsolete">getLineBlendmode(["navn"]) -> heltal |
|
Returnerer linie blandindings-tilstanden af objektet "navn". Hvis "navn" |
ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setLayerLocked("layer", locked) |
|
Sets the layer "layer" to be locked or not. If locked is set to |
true the layer will be locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerLocked("lag", låst) |
|
Sætter laget "lag" til at være låst eller ej. Hvis låst |
sættes til "true" vil laget være låst. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>isLayerLocked("layer") -> bool |
|
Returns whether the layer "layer" is locked or not, a value of True means |
that the layer "layer" is editable, a value of False means that the layer |
"layer" is locked. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerLocked("lag") -> bool |
|
Returnerer hvorvidt laget "lag" er låst eller ej, værdien "true" betyder |
at laget "lag" er redigerbart, værdien "false" betyder at laget "lag" er låst. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>isLayerOutlined("layer") -> bool |
|
Returns whether the layer "layer" is outlined or not, a value of True means |
that the layer "layer" is outlined, a value of False means that the layer |
"layer" is normal. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerOutlined("lag") -> bool |
|
Returnerer hvorvidt laget "lag" er vist som omrids eller ej, værdien "true" betyder |
at laget "lag" er vist som omrids, værdien "false" betyder at laget "lag" er normalt. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>isLayerFlow("layer") -> bool |
|
Returns whether text flows around objects on layer "layer", a value of True means |
that text flows around, a value of False means that the text does not flow around. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerFlow("lag") -> bool |
|
Returnerer hvorvidt tekst flyder omkring objekter på laget "lag", Værdien "true" betyder, |
at tekst flyder omkring objekter, værdien "false" betyder, at tekst ikke flyder omkring objekter |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>getLayerBlendmode("layer") -> int |
|
Returns the "layer" layer blendmode, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">getLayerBlendmode("lag") -> heltal |
|
Returnerer laget "lag's" blandings-tilstand. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>getLayerTransparency("layer") -> float |
|
Returns the "layer" layer transparency, |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">getLayerTransparency("lag") -> komma-tal |
|
Returnerer laget "lag's" gennemsigtighed |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>textFlowMode("name" [, state]) |
|
Enables/disables "Text Flows Around Frame" feature for object "name". |
Called with parameters string name and optional int "state" (0 <= state <= 3). |
Setting "state" to 0 will disable text flow. |
Setting "state" to 1 will make text flow around object frame. |
Setting "state" to 2 will make text flow around bounding box. |
Setting "state" to 3 will make text flow around contour line. |
If "state" is not passed, text flow is toggled. |
</source> |
<translation type="obsolete">textFlowMode("navn" [, tilstand]) |
|
Aktiverer/deaktiverer "Tekst flyder omkring ramme" egenskab for objektet "navn". |
Kaldes med parametrene streng "navn" og valgfrit heltal "tilstand" (0 <= tilstand <= 3). |
"Tilstand" sat til 0 vil deaktivere tekst flyder omkring objekt. |
"Tilstand" sat til 1 vil få tekst til at flyde omkring objekt ramme. |
"Tilstand" sat til 2 vil få tekst til at flyde omkring indbindings boks. |
"Tilstand" sat til 3 vil få tekst til at flyde omkring omrids linien. |
Hvis "tilstand" ikke er angivet vil tilstanden blive slået til eller fra. |
</translation> |
</message> |
<message> |
<source>getPageType() -> integer |
|
Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
</source> |
<translation type="obsolete">Returnerer sidens type, 0 betyder venstre side, 1 er en midterside og 2 er en højre side |
</translation> |
</message> |
<message> |
<source>getTextLines(["name"]) -> integer |
|
Returns the number of lines of the text in the text frame "name". |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">getTextLines(["navn"]) -> heltal |
|
Returnerer antal tekst-linier i tekst-rammen "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>defineColor("name", c, m, y, k) |
|
Defines a new color "name". The color Value is defined via four components: |
c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
the range from 0 to 255. |
|
May raise ValueError if an invalid color name is specified. |
</source> |
<translation type="obsolete">defineColor("navn", c, m, y, k) |
|
Definerer en ny farve "navn ". Farveværdien er defineret via fire komponenter: |
c = Cyan, m = Magenta, y = Gul og k = sort. Farve-komponenterne skal være |
i området fra 0 til 255. |
|
Kan rejse ValueError hvis et ugyldigt farve-navn er angivet. |
</translation> |
</message> |
<message> |
<source>getCornerRadius(["name"]) -> integer |
|
Returns the corner radius of the object "name". The radius is |
expressed in points. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">getCornerRadius(["navn"]) -> integer |
|
Returnerer radius på hjørnerne på objektet "navn". Radius er |
udtrykt i punkter. Hvis "navn" ikke angives, så bruges |
det markerede element. |
</translation> |
</message> |
<message> |
<source>getPosition(["name"]) -> (x,y) |
|
Returns a (x, y) tuple with the position of the object "name". |
If "name" is not given the currently selected item is used. |
The position is expressed in the actual measurement unit of the document |
- see UNIT_<type> for reference. |
</source> |
<translation type="obsolete">getPosition(["navn"]) -> (x,y) |
|
Returnerer en (x, y) tuple med positionen på objektet "navn". |
Hvis "navn" ikke angives, så bruges det markerede element. |
Positionen er udtrykt i den aktuelle måle-enhed for dokumentet |
- se UNIT_<type> for reference. |
</translation> |
</message> |
<message> |
<source>rotateObjectAbs(rot [, "name"]) |
|
Sets the rotation of the object "name" to "rot". Positive values |
mean counter clockwise rotation. If "name" is not given the currently |
selected item is used. |
</source> |
<translation type="obsolete">rotateObjectAbs(rot [, "navn"]) |
|
Sætter rotationen af objektet "navn" til "rot". Positive værdier |
angiver drejning mod uret. Hvis "navn" ikke angives, så bruges |
det markerede element. |
</translation> |
</message> |
<message> |
<source>setLayerPrintable("layer", printable) |
|
Sets the layer "layer" to be printable or not. If is the |
printable set to false the layer won't be printed. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerPrintable("lag", printbar) |
|
Sætter laget "lag" til at kunne udskrives eller ej. Hvis |
"printbar" sættes til "False", så bliver laget ikke udskrivet. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>isLayerVisible("layer") -> bool |
|
Returns whether the layer "layer" is visible or not, a value of True means |
that the layer "layer" is visible, a value of False means that the layer |
"layer" is invisible. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">isLayerVisible("lag") -> bool |
|
Returnerer hvorvidt laget "lag" er synligt eller ej, værdien "True" |
betyder, at laget "lag" er synligt, værdien "False" betyder, at laget |
"lag" er usynligt. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>insertText("text", pos, ["name"]) |
|
Inserts the text "text" at the position "pos" into the text frame "name". |
Text must be UTF encoded (see setText() as reference) The first character has an |
index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
not given the currently selected Item is used. |
|
May throw IndexError for an insertion out of bounds. |
</source> |
<translation type="obsolete">insertText("tekst", pos, ["navn"]) |
|
Indsætter teksten "tekst" ved position "pos" i tekst-rammen "navn". |
Teksten skal være UTF kodet (se setText() som reference). Første tegn |
har index 0. Indsættes tekst ved position -1, så tilføjes teksten i slutningen |
af rammen. Hvis "navn" ikke er givet, så bruges det markerede element. |
|
Kan rejse IndexError for en indsætning uden for et gyldigt område. |
</translation> |
</message> |
<message> |
<source>setLayerOutlined("layer", outline) |
|
Sets the layer "layer" to be locked or not. If outline is set to |
true the layer will be displayed outlined. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerOutlined("lag", omrids) |
|
Sætter laget "lag" til at blive vist som omrids eller ej. Hvis omrids |
er sat til "true" vil laget blive vist som omrids. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>setLayerFlow("layer", flow) |
|
Sets the layers "layer" flowcontrol to flow. If flow is set to |
true text in layers above this one will flow around objects on this layer. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerFlow("lag", flyd) |
|
sætter laget "lag's" flydningskontrol til flyd. Hvis flyd sættes til "true", |
vil tekst i lag over dette flyde rundt om objekter i dette lag. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>setLayerBlendmode("layer", blend) |
|
Sets the layers "layer" blendmode to blend. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerBlendmode("lag", blanding) |
|
Sætter laget "lag's" blandings-tilstand til blanding. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis lagets navn ikke kan accepteres. |
</translation> |
</message> |
<message> |
<source>setLayerTransparency("layer", trans) |
|
Sets the layers "layer" transparency to trans. |
|
May raise NotFoundError if the layer can't be found. |
May raise ValueError if the layer name isn't acceptable. |
</source> |
<translation type="obsolete">setLayerTransparency("lag", trans) |
|
Sætter laget "lag's" gennemsigtighed til trans. |
|
Kan rejse NotFoundError hvis laget ikke findes. |
Kan rejse ValueError hvis et ugyldigt lag-navn er angivet. |
</translation> |
</message> |
<message> |
<source>setFillTransparency(transparency, ["name"]) |
|
Sets the fill transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setFillTransparency(gennemsigtighed, ["navn"]) |
|
Sætter fyld-gennemsigtigheden af objektet "navn" til gennemsigtighed |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setFillBlendmode(blendmode, ["name"]) |
|
Sets the fill blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setFillBlendmode(blandingstilstand, ["navn"]) |
|
Sætter fyld-blandings-tilstanden af objektet "navn" til blandingstilstand |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setLineTransparency(transparency, ["name"]) |
|
Sets the line transparency of the object "name" to transparency |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setLineTransparency(gennemsigtighed, ["navn"]) |
|
Sætter linie-gennemsigtigheden af objektet "navn" til gennemsigtighed |
Hvis "navn" ikke angives, så bruges det markerede element. |
</translation> |
</message> |
<message> |
<source>setLineBlendmode(blendmode, ["name"]) |
|
Sets the line blendmode of the object "name" to blendmode |
If "name" is not given the currently selected item is used. |
</source> |
<translation type="obsolete">setLineBlendmode(blandingstilstand, ["navn"]) |
|
Sætter linieblandings-tilstanden af objektet "navn" til blandingstilstand |
Hvis "navn" ikke angives, så bruges det markerede element.</translation> |
</message> |
<message> |
<source>placeEPS("filename", x, y) |
|
Places the EPS "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the EPS placed on the page |
|
If loading was successful, the selection contains the imported EPS |
</source> |
<translation type="obsolete">placeEPS("filnavn", x, y) |
|
Placerer EPS "filnavn" på den aktive side, |
x og y specificerer coordinaten af øverste venstre hjørne af EPS'en på siden |
|
hvis indlæsning lykkedes, indeholder markeringen den importerede EPS |
</translation> |
</message> |
<message> |
<source>placeSXD("filename", x, y) |
|
Places the SXD "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the SXD placed on the page |
|
If loading was successful, the selection contains the imported SXD |
</source> |
<translation type="obsolete">placeSXD("filnavn", x, y) |
|
Placerer SXD "filnavn" på den aktive side, |
x og y specificerer coordinaten af øverste venstre hjørne af SXD'en på siden |
|
hvis indlæsning lykkedes, indeholder markeringen den importerede SXD |
</translation> |
</message> |
<message> |
<source>placeODG("filename", x, y) |
|
Places the ODG "filename" onto the current page, |
x and y specify the coordinate of the topleft corner of the ODG placed on the page |
|
If loading was successful, the selection contains the imported ODG |
</source> |
<translation type="obsolete">placeODG("filnavn", x, y) |
|
Placerer ODG "filnavn" på den aktive side, |
x og y specificerer coordinaten af øverste venstre hjørne af ODG'en på siden |
|
hvis indlæsning lykkedes, indeholder markeringen den importerede ODG |
</translation> |
</message> |
<message> |
<source>Copy #%1 of </source> |
<translation type="obsolete">Kopi #%1 af </translation> |
</message> |
</context> |
<context> |
<name>AIPlug</name> |
<message> |
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="342"/> |
<source>Importing: %1</source> |
<translation>Importerer: %1</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="345"/> |
<source>Analyzing File:</source> |
<translation>Analyserer fil:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="2348"/> |
<source>Group%1</source> |
<translation>Gruppe%1</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="3448"/> |
<source>Generating Items</source> |
<translation>Genererer elementer</translation> |
</message> |
</context> |
<context> |
<name>About</name> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="300"/> |
<source>Contributions from:</source> |
<translation>Bidrag fra:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="182"/> |
<source>&About</source> |
<translation>&Om</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="195"/> |
<source>A&uthors</source> |
<translation>&Forfattere</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="209"/> |
<source>&Translations</source> |
<translation>Over&sættelser</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="220"/> |
<source>&Online</source> |
<translation>&Internet</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="259"/> |
<source>&Close</source> |
<translation>&Luk</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="292"/> |
<source>Development Team:</source> |
<translation>Udviklings-holdet:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="302"/> |
<source>Official Documentation:</source> |
<translation>Officiel dokumentation:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="306"/> |
<source>Other Documentation:</source> |
<translation>Anden dokumentation:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="340"/> |
<source>Homepage</source> |
<translation>Hjemmeside</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="342"/> |
<source>Online Reference</source> |
<translation>Dokumentation på nettet</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="346"/> |
<source>Bugs and Feature Requests</source> |
<translation>Fejlreportering og anmodning om nye funktioner</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="350"/> |
<source>Mailing List</source> |
<translation>Postliste</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="324"/> |
<source>Official Translations and Translators:</source> |
<translation>Officielle oversættelser og oversættere:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="326"/> |
<source>Previous Translation Contributors:</source> |
<translation>Tidligere oversættelse fra:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="97"/> |
<source>About Scribus %1</source> |
<translation>Om Scribus %1</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="344"/> |
<source>Wiki</source> |
<translation>Wiki</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="125"/> |
<source>%1 %2 %3</source> |
<translation>%1 %2 %3</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="133"/> |
<source>%3-%2-%1 %4 %5</source> |
<translation>%3-%2-%1 %4 %5</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="177"/> |
<source>Using Ghostscript version %1</source> |
<translation>Bruger Ghostscript version %1</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="179"/> |
<source>No Ghostscript version available</source> |
<translation>Ingen Ghostscript version tilgængelig</translation> |
</message> |
<message> |
<source><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></source> |
<translation type="obsolete"><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="180"/> |
<source>Build ID:</source> |
<translation>Build ID:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="294"/> |
<source>Mac OS&#174; X Aqua Port:</source> |
<translation>Mac OS&#174; X Aqua Port:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="298"/> |
<source>Windows&#174; Port:</source> |
<translation>Windows&#174; Port:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="312"/> |
<source>Tango Project Icons:</source> |
<translation>Tango Projekt Ikoner:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="223"/> |
<source>&Updates</source> |
<translation>&Opdateringer</translation> |
</message> |
<message> |
<source>Check for &Updates</source> |
<translation type="obsolete">Tjek for &Opdateringer</translation> |
</message> |
<message> |
<source>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Last Letter is the renderer C=cairo or A=libart Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected. The Windows version does not use fontconfig or CUPS libraries.</source> |
<translation type="obsolete">Dette panel viser versionsnummer, dato for kompilering og den indbyggede biblioteksunderstøttelse i Scribus. C-C-T-F står for C=littlecms C=CUPS T=TIFF F=Fontconfig understøttelse. Sidste bogstav viser renderingsbiblioteket C=cairo eller A=libart. Manglende biblioteksunderstøttelse er vist ved en *. Det viser også den version af Ghostscript, som Scribus har fundet. Windows versionen bruger ikke fontconfig eller CUPS biblioteker.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="271"/> |
<source>Check for updates to Scribus. No data from your machine will be transferred off it.</source> |
<translation>Tjek for opdateringer til Scribus. Der vil ikke blive sendt nogen data væk fra din maskine.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="296"/> |
<source>OS/2&#174;/eComStation&#8482; Port:</source> |
<translation>OS/2&#174;/eComStation&#8482; Port:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="310"/> |
<source>Splash Screen:</source> |
<translation>reklame-billede:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="267"/> |
<source>This panel shows the version, build date and compiled in library support in Scribus.</source> |
<translation>Dette panel viser versionsnummer, dato for kompilering og den indbyggede biblioteksunderstøttelse i Scribus.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="268"/> |
<source>The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support.Last Letter is the renderer C=cairo or Q=Qt</source> |
<translation>C-C-T-F står for C=littlecms C=CUPS T=TIFF understøttelse F=Fontconfig understøttelse. Sidste bogstav er gengivelse til skærm C=cairo eller Q=Qt </translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="269"/> |
<source>Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</source> |
<translation>Manglende biblioteksunderstøttelse er vist ved en *. Det viser også den version af Ghostscript, som Scribus har fundet.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="270"/> |
<source>The Windows version does not use fontconfig or CUPS libraries.</source> |
<translation>Windows versionen bruger ikke fontconfig eller CUPS biblioteker.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="180"/> |
<source><p align="center"><b>%1 %2</b></p><p align="center">%3<br>%4 %5<br>%6</p></source> |
<translation><p align="center"><b>%1 %2</b></p><p align="center">%3<br>%4 %5<br>%6</p></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="180"/> |
<source>Scribus Version</source> |
<translation>Scribus Version</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="227"/> |
<location filename="../../../scribus/ui/about.cpp" line="649"/> |
<source>Check for Updates</source> |
<translation>Tjek for Opdateringer</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="647"/> |
<source>Abort Update Check</source> |
<translation>Afbryd tjek for Opdateringer</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="348"/> |
<source>Developer Blog</source> |
<translation>Udvikler Blog</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="234"/> |
<source>&Licence</source> |
<translation>&Licens</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="243"/> |
<source>Unable to open licence file. Please check your install directory or the Scribus website for licencing information.</source> |
<translation>Ude af stand til at læse licens-fil. Se venligst efter i installations-mappen eller på Scribus hjemmesiden for licens-information.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="304"/> |
<source>Doc Translators:</source> |
<translation>Doc Oversættere:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="308"/> |
<source>Webmasters:</source> |
<translation>Webmasters:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/about.cpp" line="443"/> |
<location filename="../../../scribus/ui/about.cpp" line="557"/> |
<location filename="../../../scribus/ui/about.cpp" line="624"/> |
<source>Unable to open %1 file. Please check your install directory or the Scribus website for %1 information.</source> |
<translation>Ude af stand til at læse %1 fil. Se venligst efter i installations-mappen eller på Scribus hjemmesiden for %1 information.</translation> |
</message> |
</context> |
<context> |
<name>AboutPlugins</name> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="68"/> |
<source>Filename:</source> |
<translation>Filnavn:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="69"/> |
<source>Version:</source> |
<translation>Version:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="72"/> |
<source>Enabled:</source> |
<translation>Aktiveret:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="73"/> |
<source>Release Date:</source> |
<translation>Udgivelsesdato:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="80"/> |
<source>Description:</source> |
<translation>Beskrivelse:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="81"/> |
<source>Author(s):</source> |
<translation>Forfatter(e):</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="82"/> |
<source>Copyright:</source> |
<translation>Copyright:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.cpp" line="83"/> |
<source>License:</source> |
<translation>Licens:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aboutplugins.ui" line="13"/> |
<source>Scribus: About Plug-ins</source> |
<translation>Scribus: Om Plug-ins</translation> |
</message> |
</context> |
<context> |
<name>AboutPluginsBase</name> |
<message> |
<source>Scribus: About Plug-ins</source> |
<translation type="obsolete">Scribus: Om Plug-ins</translation> |
</message> |
<message> |
<source>&Close</source> |
<translation type="obsolete">&Luk</translation> |
</message> |
<message> |
<source>Alt+C</source> |
<translation type="obsolete">Alt+C</translation> |
</message> |
</context> |
<context> |
<name>ActionManager</name> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1419"/> |
<source>&New</source> |
<translation>&Nyt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1421"/> |
<source>&Open...</source> |
<translation>&Åbn...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1422"/> |
<source>&Close</source> |
<translation>&Luk</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1423"/> |
<source>&Save</source> |
<translation>&Gem</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1424"/> |
<source>Save &As...</source> |
<translation>Gem &som...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1425"/> |
<source>Re&vert to Saved</source> |
<translation>Genindl&æs det gemte</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1426"/> |
<source>Collect for O&utput...</source> |
<translation>Saml &projekt i mappe...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1427"/> |
<source>Get Text...</source> |
<translation>Hent tekst...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1428"/> |
<source>Append &Text...</source> |
<translation>Tilføj &tekst...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1429"/> |
<source>Get Image...</source> |
<translation>Hent billede...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1432"/> |
<source>Save &Text...</source> |
<translation>Gem &tekst...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1434"/> |
<source>Save as P&DF...</source> |
<translation>Gem som P&DF...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1436"/> |
<source>Document &Setup...</source> |
<translation>&Dokument indstillinger...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1439"/> |
<source>&Print...</source> |
<translation>&Udskriv...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1441"/> |
<source>&Quit</source> |
<translation>&Afslut</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1443"/> |
<source>&Undo</source> |
<translation>&Fortryd</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1444"/> |
<source>&Redo</source> |
<translation>&Lav igen</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1445"/> |
<source>&Item Action Mode</source> |
<translation>&Element handlings-tilstand</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1446"/> |
<source>Cu&t</source> |
<translation>Kli&p</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1447"/> |
<location filename="../../../scribus/actionmanager.cpp" line="1449"/> |
<source>&Copy</source> |
<translation>&Kopiér</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1448"/> |
<location filename="../../../scribus/actionmanager.cpp" line="1450"/> |
<source>&Paste</source> |
<translation>&Indsæt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1454"/> |
<source>Select &All</source> |
<translation>Ma&rkér alt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1456"/> |
<source>&Deselect All</source> |
<translation>&Fjern al markering</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1457"/> |
<source>&Search/Replace...</source> |
<translation>&Søg/erstat...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1458"/> |
<source>Edit Image...</source> |
<translation>Redigér billede...</translation> |
</message> |
<message> |
<source>C&olors...</source> |
<translation type="obsolete">Far&ver...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1465"/> |
<source>&Master Pages...</source> |
<translation>&Master sider...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1438"/> |
<source>P&references...</source> |
<translation>Pr&æferencer...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1473"/> |
<source>%1 pt</source> |
<translation>%1 pt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1475"/> |
<source>&Other...</source> |
<translation>&Andet...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1476"/> |
<source>&Left</source> |
<translation>&Venstre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1477"/> |
<source>&Center</source> |
<translation>&Center</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1478"/> |
<source>&Right</source> |
<translation>&Højre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1479"/> |
<source>&Block</source> |
<translation>&Blok</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1480"/> |
<source>&Forced</source> |
<translation>&Forceret</translation> |
</message> |
<message> |
<source>&%1 %</source> |
<translation type="obsolete">&%1 %</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1482"/> |
<source>&Normal</source> |
<translation>&Normal</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1483"/> |
<source>&Underline</source> |
<translation>&Understreg</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1484"/> |
<source>Underline &Words</source> |
<translation>Understreg &ord</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1485"/> |
<source>&Strike Through</source> |
<translation>&Gennemstreg</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1486"/> |
<source>&All Caps</source> |
<translation>&Alt som store bogstaver</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1487"/> |
<source>Small &Caps</source> |
<translation>Små &Kapitæler</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1488"/> |
<source>Su&perscript</source> |
<translation>&Hævet skrift</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1489"/> |
<source>Su&bscript</source> |
<translation>S&ænket skrift</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1491"/> |
<source>S&hadow</source> |
<translation>Sk&ygge</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1493"/> |
<source>&Image Effects</source> |
<translation>&Billed effekter</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1494"/> |
<source>&Tabulators...</source> |
<translation>&Tabulatorer...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1497"/> |
<source>D&uplicate</source> |
<translation>&Duplikér</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1498"/> |
<source>&Multiple Duplicate</source> |
<translation>Duplikér &flere gange</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1499"/> |
<source>&Transform</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1500"/> |
<source>&Delete</source> |
<translation>&Slet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1501"/> |
<source>&Group</source> |
<translation>Lav til &gruppe</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1502"/> |
<source>&Ungroup</source> |
<translation>Bryd g&ruppe</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1504"/> |
<source>Is &Locked</source> |
<translation>Er &låst</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1505"/> |
<source>Si&ze is Locked</source> |
<translation>St&ørrelse er låst</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1509"/> |
<source>Lower to &Bottom</source> |
<translation>Placér &bagest</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1510"/> |
<source>Raise to &Top</source> |
<translation>Placér &forrest</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1511"/> |
<source>&Lower</source> |
<translation>Flyt bag&ud</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1512"/> |
<source>&Raise</source> |
<translation>Flyt f&orud</translation> |
</message> |
<message> |
<source>Send to S&crapbook</source> |
<translation type="obsolete">Placér i s&crapbog</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1515"/> |
<source>&Attributes...</source> |
<translation>K&valiteter...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1517"/> |
<source>I&mage Visible</source> |
<translation>Billede er &synlig</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1518"/> |
<source>&Update Image</source> |
<translation>&Opdatér billede</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1519"/> |
<source>Insert Rows...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1520"/> |
<source>Insert Columns...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1521"/> |
<source>Delete Rows</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1522"/> |
<source>Delete Columns</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1523"/> |
<source>Merge Cells</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1524"/> |
<source>Split Cells...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1525"/> |
<source>Set Row Heights...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1526"/> |
<source>Set Column Widths...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1527"/> |
<source>Distribute Rows Evenly</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1528"/> |
<source>Distribute Columns Evenly</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1529"/> |
<source>Adjust Frame to Table</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1530"/> |
<source>Adjust Table to Frame</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1531"/> |
<source>Adjust Frame Height to Text</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1532"/> |
<source>Adjust Frame to Image</source> |
<translation>Tilpas ramme til billede</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1534"/> |
<source>Embed Image</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1535"/> |
<source>Extended Image Properties</source> |
<translation>Udvidede billed egenskaber</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1536"/> |
<source>&Low Resolution</source> |
<translation>&Lav Opløsning</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1537"/> |
<source>&Normal Resolution</source> |
<translation>&Normal opløsning</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1538"/> |
<source>&Full Resolution</source> |
<translation>&Fuld opløsning</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1539"/> |
<source>Is PDF &Bookmark</source> |
<translation>Er PDF-&Bogmærke</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1540"/> |
<source>Is PDF A&nnotation</source> |
<translation>Er PDF-&Kommentar</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1541"/> |
<source>Annotation P&roperties</source> |
<translation>Kommentar e&genskaber</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1542"/> |
<source>Field P&roperties</source> |
<translation>Felt ege&nskaber</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1543"/> |
<source>&Edit Shape...</source> |
<translation>Re&digér form...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1544"/> |
<source>&Attach Text to Path</source> |
<translation>Fastgør &tekst til sti</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1545"/> |
<source>&Detach Text from Path</source> |
<translation>Frigør t&ekst fra sti</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1546"/> |
<source>&Combine Polygons</source> |
<translation>Forbind &polygoner</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1547"/> |
<source>Split &Polygons</source> |
<translation>&Opdel polygoner</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1548"/> |
<source>&Bezier Curve</source> |
<translation>&Bezier-kurve</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1549"/> |
<source>&Image Frame</source> |
<translation>B&illed ramme</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1551"/> |
<source>&Polygon</source> |
<translation>&Polygon</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1552"/> |
<source>&Text Frame</source> |
<translation>&Tekstramme</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1553"/> |
<source>&Symbol</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1554"/> |
<source>Unweld items</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1555"/> |
<source>Weld items</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1556"/> |
<source>Edit weld item</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1559"/> |
<source>&Frames...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1560"/> |
<source>&Glyph...</source> |
<translation>&Glyf...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1561"/> |
<source>Sample Text</source> |
<translation>Prøvetekst</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1563"/> |
<source>Anchor Mark</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1564"/> |
<source>Variable Text</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1565"/> |
<source>Reference to Item</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1566"/> |
<source>Reference to Mark</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1567"/> |
<source>Foot/Endnote</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1569"/> |
<source>Edit Mark</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1570"/> |
<source>Update Marks</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1573"/> |
<source>&Insert...</source> |
<translation>&Indsæt...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1574"/> |
<source>Im&port...</source> |
<translation>Im&portér...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1575"/> |
<source>&Delete...</source> |
<translation>&Slet...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1576"/> |
<source>&Copy...</source> |
<translation>&Kopiér...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1577"/> |
<source>&Move...</source> |
<translation>&Flyt...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1578"/> |
<source>&Apply Master Page...</source> |
<translation>&Anvend masterside...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1580"/> |
<source>Manage &Guides...</source> |
<translation>Håndtér &hjælpelinier...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1586"/> |
<source>&50%</source> |
<translation>&50%</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1587"/> |
<source>&75%</source> |
<translation>&75%</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1588"/> |
<source>&100%</source> |
<translation>&100%</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1589"/> |
<source>&200%</source> |
<translation>&200%</translation> |
</message> |
<message> |
<source>&Thumbnails</source> |
<translation type="obsolete">Miniat&urer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1592"/> |
<source>Show &Margins</source> |
<translation>Vis &margener</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1594"/> |
<source>Show &Frames</source> |
<translation>Vis &rammer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1596"/> |
<source>Show &Images</source> |
<translation>Vis &billeder</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1597"/> |
<source>Show &Grid</source> |
<translation>Vis &gitter</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1598"/> |
<source>Show G&uides</source> |
<translation>Vis &hjælpelinier</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1600"/> |
<source>Show &Baseline Grid</source> |
<translation>Vis &grundlinie-gitter</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1601"/> |
<source>Show &Text Chain</source> |
<translation>Vis &tekstkæde</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1602"/> |
<source>Show Control Characters</source> |
<translation>Vis kontrol tegn</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1605"/> |
<source>Sn&ap to Grid</source> |
<translation>&Klæb til gitter</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1606"/> |
<source>Sna&p to Guides</source> |
<translation>Kl&æb til hjælpelinier</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1612"/> |
<source>&Properties</source> |
<translation>&Egenskaber</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1614"/> |
<source>&Scrapbook</source> |
<translation>&Scrapbog</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1615"/> |
<source>&Layers</source> |
<translation>&Lag</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1616"/> |
<source>&Arrange Pages</source> |
<translation>&Arrangér sider</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1617"/> |
<source>&Bookmarks</source> |
<translation>&Bogmærker</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1618"/> |
<source>&Measurements</source> |
<translation>&Målinger</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1619"/> |
<source>Action &History</source> |
<translation>&Handlings historie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1620"/> |
<source>Preflight &Verifier</source> |
<translation>&Preflight efterprøvning</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1621"/> |
<source>&Align and Distribute</source> |
<translation>Ops&til på linie og fordel</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1623"/> |
<source>Inline Frames</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1624"/> |
<source>&Tools</source> |
<translation>&Værktøjer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1625"/> |
<source>P&DF Tools</source> |
<translation>P&DF-værktøjer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1628"/> |
<source>Select Item</source> |
<translation>Markér element</translation> |
</message> |
<message> |
<source>T&able</source> |
<translation type="obsolete">T&abel</translation> |
</message> |
<message> |
<source>&Shape</source> |
<translation type="obsolete">For&m</translation> |
</message> |
<message> |
<source>&Line</source> |
<translation type="obsolete">&Linie</translation> |
</message> |
<message> |
<source>&Freehand Line</source> |
<translation type="obsolete">&Frihånds linie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1629"/> |
<source>Rotate Item</source> |
<translation>Rotér objekt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1630"/> |
<source>Zoom in or out</source> |
<translation>Zoom ind eller ud</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1631"/> |
<source>Zoom in</source> |
<translation>Zoom ind</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1632"/> |
<source>Zoom out</source> |
<translation>Zoom ud</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1633"/> |
<source>Edit Contents of Frame</source> |
<translation>Redigér indhold af ramme</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1634"/> |
<source>Edit Text...</source> |
<translation>Redigér tekst...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1635"/> |
<source>Link Text Frames</source> |
<translation>Sammenkæd tekstrammer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1636"/> |
<source>Unlink Text Frames</source> |
<translation>Bryd sammenkædning af tekstrammer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1639"/> |
<source>&Eye Dropper</source> |
<translation>&Farveopsnapper</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1640"/> |
<source>Copy Item Properties</source> |
<translation>Kopiér element egenskaber</translation> |
</message> |
<message> |
<source>Edit the text with the Story Editor</source> |
<translation type="obsolete">Redigér teksten med den indbyggede tekstbehandler</translation> |
</message> |
<message> |
<source>Insert Text Frame</source> |
<translation type="obsolete">Indsæt tekstramme</translation> |
</message> |
<message> |
<source>Insert Image Frame</source> |
<translation type="obsolete">Indsæt billedramme</translation> |
</message> |
<message> |
<source>Insert Table</source> |
<translation type="obsolete">Indsæt tabel</translation> |
</message> |
<message> |
<source>Insert Shape</source> |
<translation type="obsolete">Indsæt figur</translation> |
</message> |
<message> |
<source>Insert Polygon</source> |
<translation type="obsolete">Indsæt polygon</translation> |
</message> |
<message> |
<source>Insert Line</source> |
<translation type="obsolete">Indsæt linie</translation> |
</message> |
<message> |
<source>Insert Bezier Curve</source> |
<translation type="obsolete">Indsæt bezierkurve</translation> |
</message> |
<message> |
<source>Insert Freehand Line</source> |
<translation type="obsolete">Indsæt frihånds-linie</translation> |
</message> |
<message> |
<source>&Manage Pictures</source> |
<translation type="obsolete">Håndtér &billeder</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1670"/> |
<source>&Hyphenate Text</source> |
<translation>&Orddel tekst</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1671"/> |
<source>Dehyphenate Text</source> |
<translation>Fjern orddeling af tekt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1672"/> |
<source>&Generate Table Of Contents</source> |
<translation>&Generér indholdsfortegnelse</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1680"/> |
<source>&About Scribus</source> |
<translation>&Om Scribus</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1682"/> |
<source>About &Qt</source> |
<translation>Om &QT</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1683"/> |
<source>Toolti&ps</source> |
<translation>Hj&ælpe-tekst</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1685"/> |
<source>Scribus &Manual...</source> |
<translation>Scribus &Manual...</translation> |
</message> |
<message> |
<source>Smart &Hyphen</source> |
<translation type="obsolete">Smart &orddeling</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1704"/> |
<source>Non Breaking Dash</source> |
<translation>Ikke brydbar bindestreg</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1705"/> |
<source>Non Breaking &Space</source> |
<translation>Ikke brydbar &mellemrum</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1706"/> |
<source>Page &Number</source> |
<translation>Side&nummer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1708"/> |
<source>New Line</source> |
<translation>Ny linie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1709"/> |
<source>Frame Break</source> |
<translation>Ramme-skift</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1710"/> |
<source>Column Break</source> |
<translation>Kolonne-skift</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1713"/> |
<source>Copyright</source> |
<translation>Ophavsret</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1714"/> |
<source>Registered Trademark</source> |
<translation>Registreret varemærke</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1715"/> |
<source>Trademark</source> |
<translation>Varemærke</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1717"/> |
<source>Bullet</source> |
<translation>Punkt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1719"/> |
<source>Em Dash</source> |
<translation>Em streg</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1720"/> |
<source>En Dash</source> |
<translation>En streg</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1721"/> |
<source>Figure Dash</source> |
<translation>Figur tegn</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1722"/> |
<source>Quotation Dash</source> |
<translation>Citat tegn</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1693"/> |
<source>Toggle Palettes</source> |
<translation>Slå paletter til/fra</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1694"/> |
<source>Toggle Guides</source> |
<translation>Slå hjælpelinier til/fra</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1581"/> |
<source>Manage Page Properties...</source> |
<translation>Håndtér side egenskaber...</translation> |
</message> |
<message> |
<source>Rulers relative to Page</source> |
<translation type="obsolete">Linialer relativt til side</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1676"/> |
<source>&Cascade</source> |
<translation>&Bagved hinanden</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1677"/> |
<source>&Tile</source> |
<translation>Ved &siden af hinanden</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1440"/> |
<source>Print Previe&w</source> |
<translation>&Vis udskrift</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1466"/> |
<source>&JavaScripts...</source> |
<translation>&JavaScripts...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1579"/> |
<source>Convert to Master Page...</source> |
<translation>konvertér til masterside...</translation> |
</message> |
<message> |
<source>&About Plug-ins</source> |
<translation type="obsolete">Om &Plug-ins</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1516"/> |
<source>More Info...</source> |
<translation>Mere Info...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1613"/> |
<source>&Outline</source> |
<comment>Document Outline Palette</comment> |
<translation>&Oversigt</translation> |
</message> |
<message> |
<source>Insert Smart Hyphen</source> |
<translation type="obsolete">Indsæt smart orddeling</translation> |
</message> |
<message> |
<source>Insert Non Breaking Dash</source> |
<translation type="obsolete">Indsæt ikke brydbar bindestreg</translation> |
</message> |
<message> |
<source>Insert Non Breaking Space</source> |
<translation type="obsolete">Indsæt ikke brydbar mellemrum</translation> |
</message> |
<message> |
<source>Insert Page Number</source> |
<translation type="obsolete">Indsæt sidenummer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1750"/> |
<source>ff</source> |
<translation>ff</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1751"/> |
<source>fi</source> |
<translation>fi</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1752"/> |
<source>fl</source> |
<translation>fl</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1753"/> |
<source>ffi</source> |
<translation>ffi</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1754"/> |
<source>ffl</source> |
<translation>ffl</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1755"/> |
<source>ft</source> |
<translation>ft</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1756"/> |
<source>st</source> |
<translation>st</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1462"/> |
<source>S&tyles...</source> |
<translation>&Typografier && Stile...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1490"/> |
<source>&Outline</source> |
<comment>type effect</comment> |
<translation>&Omrids</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1506"/> |
<source>&Printing Enabled</source> |
<translation>&Udskrivning aktiveret</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1507"/> |
<source>&Flip Horizontally</source> |
<translation>&Flip horisontalt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1508"/> |
<source>&Flip Vertically</source> |
<translation>&Flip vertikalt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1550"/> |
<source>&Outlines</source> |
<comment>Convert to oulines</comment> |
<translation>&Kurver</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1603"/> |
<source>Show Rulers</source> |
<translation>Vis linealer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1716"/> |
<source>Solidus</source> |
<translation>Solidus</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1718"/> |
<source>Middle Dot</source> |
<translation>Prik</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1743"/> |
<source>En Space</source> |
<translation>En spatie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1744"/> |
<source>Em Space</source> |
<translation>Em spatie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1745"/> |
<source>Thin Space</source> |
<translation>tynd spatie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1746"/> |
<source>Thick Space</source> |
<translation>Tyk spatie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1747"/> |
<source>Mid Space</source> |
<translation>Mid spatie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1748"/> |
<source>Hair Space</source> |
<translation>Hår spatie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1451"/> |
<source>Paste (&Absolute)</source> |
<translation>Indsæt (&Ubetinget)</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1453"/> |
<source>C&lear</source> |
<translation>Nu&lstil</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1599"/> |
<source>Show Text Frame Columns</source> |
<translation>Vis kolonner i tekstramme</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1433"/> |
<source>Save as &EPS...</source> |
<translation>Gem som &EPS...</translation> |
</message> |
<message> |
<source>Patterns...</source> |
<translation type="obsolete">Mønstre...</translation> |
</message> |
<message> |
<source>Send to Patterns</source> |
<translation type="obsolete">Send til mønstre</translation> |
</message> |
<message> |
<source>&Frame...</source> |
<translation type="obsolete">&Ramme...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1591"/> |
<source>Preview Mode</source> |
<translation>Forhåndvisnings-tilstand</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1593"/> |
<source>Show Bleeds</source> |
<translation>Vis Til beskæring</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1595"/> |
<source>Show Layer Indicators</source> |
<translation>Vis lag-indikatorer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1655"/> |
<source>Insert PDF Push Button</source> |
<translation>Indsæt PDF trykknap</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1657"/> |
<source>Insert PDF Text Field</source> |
<translation>Indsæt PDF tekstfelt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1658"/> |
<source>Insert PDF Check Box</source> |
<translation>Indsæt PDF afkrydsnings boks</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1659"/> |
<source>Insert PDF Combo Box</source> |
<translation>Indsæt PDF kombo boks</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1660"/> |
<source>Insert PDF List Box</source> |
<translation>Insæt PDF liste boks</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1661"/> |
<source>Insert Text Annotation</source> |
<translation>Insæt tekst kommentar</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1662"/> |
<source>Insert Link Annotation</source> |
<translation>Indsæt lænke kommentar</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1711"/> |
<source>&Zero Width Space</source> |
<translation>&Nul-bredde mellemrum</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1712"/> |
<source>Zero Width NB Space</source> |
<translation>Nul-bredde IB mellemrum</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1584"/> |
<source>&Fit to Height</source> |
<translation>&Tilpas til højde</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1585"/> |
<source>Fit to Width</source> |
<translation>Tilpas til bredde</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1562"/> |
<source>Sticky Tools</source> |
<translation>Klæb til værktøjer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1724"/> |
<source>Apostrophe</source> |
<comment>Unicode 0x0027</comment> |
<translation>Apostrof</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1725"/> |
<source>Straight Double</source> |
<comment>Unicode 0x0022</comment> |
<translation>Lige dobbelt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1726"/> |
<source>Single Left</source> |
<comment>Unicode 0x2018</comment> |
<translation>Enkelt venstre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1727"/> |
<source>Single Right</source> |
<comment>Unicode 0x2019</comment> |
<translation>Enkelt højre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1728"/> |
<source>Double Left</source> |
<comment>Unicode 0x201C</comment> |
<translation>Dobbelt venstre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1729"/> |
<source>Double Right</source> |
<comment>Unicode 0x201D</comment> |
<translation>Dobbelt højre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1730"/> |
<source>Single Reversed</source> |
<comment>Unicode 0x201B</comment> |
<translation>Enkelt vendt om</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1731"/> |
<source>Double Reversed</source> |
<comment>Unicode 0x201F</comment> |
<translation>Dobbelt vendt om</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1732"/> |
<source>Single Left Guillemet</source> |
<comment>Unicode 0x2039</comment> |
<translation>Enkelt venstre Guillemet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1733"/> |
<source>Single Right Guillemet</source> |
<comment>Unicode 0x203A</comment> |
<translation>Enkelt højre Guillemet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1734"/> |
<source>Double Left Guillemet</source> |
<comment>Unicode 0x00AB</comment> |
<translation>Dobbelt venstre Guillemet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1735"/> |
<source>Double Right Guillemet</source> |
<comment>Unicode 0x00BB</comment> |
<translation>Dobbelt højre Guillemet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1736"/> |
<source>Low Single Comma</source> |
<comment>Unicode 0x201A</comment> |
<translation>Lavt enkelt komma</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1737"/> |
<source>Low Double Comma</source> |
<comment>Unicode 0x201E</comment> |
<translation>Lavt dobbelt komma</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1738"/> |
<source>CJK Single Left</source> |
<comment>Unicode 0x300C</comment> |
<translation>CJK Enkelt venstre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1739"/> |
<source>CJK Single Right</source> |
<comment>Unicode 0x300D</comment> |
<translation>CJK Enkelt højre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1740"/> |
<source>CJK Double Left</source> |
<comment>Unicode 0x300E</comment> |
<translation>CJK Dobbelt venstre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1741"/> |
<source>CJK Double Right</source> |
<comment>Unicode 0x300F</comment> |
<translation>CJK Dobbelt højre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1590"/> |
<source>&400%</source> |
<translation>&400%</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1642"/> |
<source>Insert &Text Frame</source> |
<translation>Indsæt &tekstramme</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1643"/> |
<source>Insert &Image Frame</source> |
<translation>Indsæt b&illedramme</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1645"/> |
<source>Insert T&able</source> |
<translation>Indsæt t&abel</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1646"/> |
<source>Insert &Shape</source> |
<translation>Indsæt &figur</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1647"/> |
<source>Insert &Polygon</source> |
<translation>Indsæt &polygon</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1650"/> |
<source>Insert &Line</source> |
<translation>Indsæt &linie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1652"/> |
<source>Insert &Bezier Curve</source> |
<translation>Indsæt &bezierkurve</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1653"/> |
<source>Insert &Freehand Line</source> |
<translation>Indsæt &frihånds-linie</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1686"/> |
<source>Scribus Homepage</source> |
<translation>Scribus Hjemmside</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1687"/> |
<source>Scribus Online Documentation</source> |
<translation>Scribus dokumentation på nettet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1688"/> |
<source>Scribus Wiki</source> |
<translation>Scribus Wiki</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1689"/> |
<source>Getting Started with Scribus</source> |
<translation>Komme i gang med scribus</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1608"/> |
<source>Show Context Menu</source> |
<translation>Vis kontekst menu</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1669"/> |
<source>&Manage Images</source> |
<translation>&Håndtér billeder</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1681"/> |
<source>&About Plugins</source> |
<translation>&Om Plugins</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1695"/> |
<source>Insert Unicode Character Begin Sequence</source> |
<translation>Indsæt unicode-tegn Begynd sekvens</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1430"/> |
<source>Get Vector File...</source> |
<translation>Hent Vektor-fil...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1455"/> |
<source>Advanced Select All...</source> |
<translation>Avanceret Marker alt...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1459"/> |
<source>Edit Source...</source> |
<translation>Redigér kilde...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1461"/> |
<source>Replace Colors...</source> |
<translation>Erstat farver...</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1604"/> |
<source>Rulers Relative to Page</source> |
<translation>Linialer relativt til side</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1644"/> |
<source>Insert &Render Frame</source> |
<translation>Indsæt &render-ramme</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1690"/> |
<source>Check for Updates</source> |
<translation>Tjek for Opdateringer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1707"/> |
<source>Number of Pages</source> |
<translation>Antal sider</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1533"/> |
<source>Adjust Image to Frame</source> |
<translation>Tilpas billede til ramme</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1452"/> |
<source>Paste Image from Clipboard</source> |
<translation type="unfinished">Indsæt Billeder fra udklipsholder</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1460"/> |
<source>Colors and Fills...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1463"/> |
<source>Marks...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1464"/> |
<source>Notes Styles...</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1503"/> |
<source>Adjust Group</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1513"/> |
<source>Patterns</source> |
<translation type="unfinished">Mønstre</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1514"/> |
<source>Inline Items</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1607"/> |
<source>Snap to Items</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1622"/> |
<source>Symbols</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1637"/> |
<source>Unlink Text Frame with Text Copy</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1638"/> |
<source>Unlink Text Frame with Text Cut</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1648"/> |
<source>Insert Arc</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1649"/> |
<source>Insert Spiral</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1651"/> |
<source>Insert Calligraphic Line</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1656"/> |
<source>Insert PDF Radio Button</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1664"/> |
<source>Insert 3D Annotation</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1673"/> |
<source>&Update Document</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1703"/> |
<source>Soft &Hyphen</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1882"/> |
<source>File</source> |
<translation>Fil</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1882"/> |
<source>&File</source> |
<translation>&Fil</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1884"/> |
<source>Edit</source> |
<translation>Redigér</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1884"/> |
<source>&Edit</source> |
<translation>&Redigér</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1886"/> |
<source>Style</source> |
<translation>Stil</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1886"/> |
<source>&Style</source> |
<translation>&Stil</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1888"/> |
<source>Item</source> |
<translation>Element</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1888"/> |
<source>&Item</source> |
<translation>&Element</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1890"/> |
<source>Insert</source> |
<translation>Indsæt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1890"/> |
<source>I&nsert</source> |
<translation>&Indsæt</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1892"/> |
<source>Page</source> |
<translation>Side</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1892"/> |
<source>&Page</source> |
<translation>&Side</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1894"/> |
<source>View</source> |
<translation>Vis</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1894"/> |
<source>&View</source> |
<translation>&Vis</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1896"/> |
<source>Table</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1896"/> |
<source>&Table</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1898"/> |
<source>Extras</source> |
<translation>Ekstra</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1898"/> |
<source>E&xtras</source> |
<translation>E&kstra</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1900"/> |
<source>Windows</source> |
<translation>Vinduer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1900"/> |
<source>&Windows</source> |
<translation>&Vinduer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1902"/> |
<source>Help</source> |
<translation>Hjælp</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1902"/> |
<source>&Help</source> |
<translation>&Hjælp</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="2255"/> |
<source>Plugin Menu Items</source> |
<translation>Plugin menu-elementer</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="2257"/> |
<source>Others</source> |
<translation>Andet</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="2259"/> |
<source>Unicode Characters</source> |
<translation>Unicode tegn</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1684"/> |
<source>Move/Resize Value Indicator</source> |
<translation>/Flyt/Ændre størrelse Værdi-viser</translation> |
</message> |
<message> |
<location filename="../../../scribus/actionmanager.cpp" line="1420"/> |
<source>New &from Template...</source> |
<translation>Nyt &fra skabelon...</translation> |
</message> |
</context> |
<context> |
<name>AdjustCmsDialog</name> |
<message> |
<location filename="../../../scribus/ui/adjustcmsdialog.cpp" line="16"/> |
<source>CMS Settings</source> |
<translation>CMS indstillinger</translation> |
</message> |
</context> |
<context> |
<name>AlignDistribute</name> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="14"/> |
<source>DockWidget</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="25"/> |
<source>Align</source> |
<translation>Opstil på linie</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="54"/> |
<source>&Selected Guide:</source> |
<translation>&Markerede hjælpelinier:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="67"/> |
<source>&Relative To:</source> |
<translation>&Relativt til:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="86"/> |
<source>&Align Sides By:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="142"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="149"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="156"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="163"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="170"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="177"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="184"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="191"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="198"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="205"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="275"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="282"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="289"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="296"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="303"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="313"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="320"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="330"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="337"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="347"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="354"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="361"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="371"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="378"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="385"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="392"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="566"/> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="573"/> |
<source>...</source> |
<translation>...</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="249"/> |
<source>Distribute</source> |
<translation>Fordel</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="439"/> |
<source>&Distance:</source> |
<translation>&Afstand:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="503"/> |
<source>Reverse Distribution</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.ui" line="545"/> |
<source>Swap</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>AlignDistributeBase</name> |
<message> |
<source>Align and Distribute</source> |
<translation type="obsolete">Opstil på linie og fordel</translation> |
</message> |
<message> |
<source>Align</source> |
<translation type="obsolete">Opstil på linie</translation> |
</message> |
<message> |
<source>&Selected Guide:</source> |
<translation type="obsolete">&Markerede hjælpelinier:</translation> |
</message> |
<message> |
<source>&Relative To:</source> |
<translation type="obsolete">&Relativt til:</translation> |
</message> |
<message> |
<source>...</source> |
<translation type="obsolete">...</translation> |
</message> |
<message> |
<source>Distribute</source> |
<translation type="obsolete">Fordel</translation> |
</message> |
<message> |
<source>&Distance:</source> |
<translation type="obsolete">&Afstand:</translation> |
</message> |
</context> |
<context> |
<name>AlignDistributePalette</name> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="93"/> |
<source>Align and Distribute</source> |
<translation>Opstil på linie og fordel</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="96"/> |
<source>&Relative to:</source> |
<translation>&Relativt til:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="99"/> |
<source>First Selected</source> |
<translation>Først markerede</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="100"/> |
<source>Last Selected</source> |
<translation>Sidst markerede</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="101"/> |
<source>Page</source> |
<translation>Side</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="102"/> |
<source>Margins</source> |
<translation>Margener</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="103"/> |
<source>Guide</source> |
<translation>Hjælpelinie</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="104"/> |
<source>Selection</source> |
<translation>Markering</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="108"/> |
<source>&Align Sides By:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="121"/> |
<source>Align bottoms</source> |
<translation>Stil bund-sider på linie</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="123"/> |
<source>Align right sides</source> |
<translation>Stil højre sider på linie</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="127"/> |
<source>Center on vertical axis</source> |
<translation>Centrér omkring vertikal akse</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="129"/> |
<source>Align left sides</source> |
<translation>Stil venstre sider på linie</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="131"/> |
<source>Center on horizontal axis</source> |
<translation>Centrér omkring horisontal akse</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="135"/> |
<source>Align tops</source> |
<translation>Stil top-sider på linie</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="137"/> |
<source>&Selected Guide:</source> |
<translation>&Markerede hjælpelinier:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="145"/> |
<source>Distribute right sides equidistantly</source> |
<translation>Fordel højre sider med lige stor afstand</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="147"/> |
<source>Distribute bottoms equidistantly</source> |
<translation>Fordel bund-sider med lige stor afstand</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="149"/> |
<source>Distribute centers equidistantly horizontally</source> |
<translation>Fordel center af objekter med lige stor afstand horisontalt </translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="155"/> |
<source>Distribute left sides equidistantly</source> |
<translation>Fordel venstre sider med lige stor afstand</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="157"/> |
<source>Distribute centers equidistantly vertically</source> |
<translation>Fordel center af objekter med lige stor afstand vertikalt</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="159"/> |
<source>Distribute tops equidistantly</source> |
<translation>Fordel top-sider med lige stor afstand</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="169"/> |
<source>&Distance:</source> |
<translation>&Afstand:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="170"/> |
<source>Distribute the items with the distance specified</source> |
<translation>Fordel elementerne med det med anførte mellemrum</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="172"/> |
<source>When distributing by a set distance, reverse the direction of the distribution of items</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="174"/> |
<source>None Selected</source> |
<translation>Intet markeret</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="176"/> |
<source>Swap items to the left</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="177"/> |
<source>Swap items to the right</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="477"/> |
<source>Y: %1%2</source> |
<translation>Y: %1%2</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="485"/> |
<source>X: %1%2</source> |
<translation>X: %1%2</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="94"/> |
<source>Align</source> |
<translation>Opstil på linie</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="95"/> |
<source>Distribute</source> |
<translation>Fordel</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="111"/> |
<source>Move</source> |
<translation type="unfinished">Flyt</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="112"/> |
<source>Resize</source> |
<translation type="unfinished">Ændr størrelse</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="113"/> |
<source><qt>When aligning one side of an item do one of the following:<ul><li>Always move the other side too (preserve existing width and height)</li><li>Keep the other side fixed (resize the item instead of moving it) whenever possible</li></ul></qt></source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="117"/> |
<source>Align right sides of items to left side of anchor</source> |
<translation>Stil højre sider af elementer på linie efter venstre side af anker</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="119"/> |
<source>Align left sides of items to right side of anchor</source> |
<translation>Stil venstre sider af elementer på linie efter højre side af anker</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="125"/> |
<source>Align tops of items to bottom of anchor</source> |
<translation>Stil top-sider af elementer på linie efter bunden af anker</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="133"/> |
<source>Align bottoms of items to top of anchor</source> |
<translation>Stil bund-sider af elementer på linie efter toppen af anker</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="140"/> |
<source>Make horizontal gaps between items equal</source> |
<translation>Lav horisontale mellemrum mellem elementer lige store</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="142"/> |
<source>Make horizontal gaps between items equal to the value specified</source> |
<translation>Lav horisontale mellemrum mellem elementer lig med anførte værdi</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="151"/> |
<source>Make vertical gaps between items equal</source> |
<translation>Lav vertikale mellemrum mellem elementer lige store</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="153"/> |
<source>Make vertical gaps between items equal to the value specified</source> |
<translation>Lav vertikale mellemrum mellem elementer lig med anførte værdi</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="161"/> |
<source>Make horizontal gaps between items and sides of page equal</source> |
<translation>Lav horisontale mellemrum mellem elementer og sider af side ens</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="163"/> |
<source>Make vertical gaps between items and the top and bottom of page equal</source> |
<translation>Lav vertikale mellemrum mellem elementer og top og bund af side ens</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="165"/> |
<source>Make horizontal gaps between items and sides of page margins equal</source> |
<translation>Lav horisontale mellemrum mellem elementer og sider af side-margener ens</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="167"/> |
<source>Make vertical gaps between items and the top and bottom of page margins equal</source> |
<translation>Lav vertikale mellemrum mellem elementer og top og bund af side-margener ens</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="106"/> |
<source><qt>Align relative to the:<ul><li>First selected item</li><li>Second Selected Item</li><li>The current page</li><li>The margins of the current page</li><li>A Guide</li><li>The selection</ul></qt></source> |
<translation><qt>Juster relativt til:<ul><li>Først markerede element</li><li>Andet markerede element</li><li>Den aktive sidde</li><li>Margenerne på den aktive side</li><li>En hjælpelinie</li><li>Det markerede</ul></qt></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/aligndistribute.cpp" line="115"/> |
<source>The location of the selected guide to align to</source> |
<translation>Placeringen af den markerede hjælpelinie, hvortil der skal justeres</translation> |
</message> |
</context> |
<context> |
<name>AlignSelect</name> |
<message> |
<location filename="../../../scribus/ui/alignselect.cpp" line="110"/> |
<source>Align Text Left</source> |
<translation>Justér mod venstre</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/alignselect.cpp" line="112"/> |
<source>Align Text Center</source> |
<translation>Centrér</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/alignselect.cpp" line="111"/> |
<source>Align Text Right</source> |
<translation>Justér mod højre</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/alignselect.cpp" line="113"/> |
<source>Align Text Justified</source> |
<translation>Lige margener</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/alignselect.cpp" line="114"/> |
<source>Align Text Forced Justified</source> |
<translation>Tvunget lige margener</translation> |
</message> |
</context> |
<context> |
<name>Annot</name> |
<message> |
<source>Destination</source> |
<translation type="obsolete">Bestemmelsessted</translation> |
</message> |
<message> |
<source>Date</source> |
<translation type="obsolete">Dato</translation> |
</message> |
<message> |
<source>None</source> |
<translation type="obsolete">Ingen</translation> |
</message> |
<message> |
<source>Open</source> |
<translation type="obsolete">Åbn</translation> |
</message> |
<message> |
<source>Push</source> |
<translation type="obsolete">Tryk</translation> |
</message> |
<message> |
<source>Star</source> |
<translation type="obsolete">Stjerne</translation> |
</message> |
<message> |
<source>Text</source> |
<translation type="obsolete">Tekst</translation> |
</message> |
<message> |
<source>Thin</source> |
<translation type="obsolete">Tynd</translation> |
</message> |
<message> |
<source>Time</source> |
<translation type="obsolete">Tid</translation> |
</message> |
<message> |
<source>Wide</source> |
<translation type="obsolete">Bred</translation> |
</message> |
<message> |
<source>Prepend Currency Symbol</source> |
<translation type="obsolete">Sæt valutasymbol foran</translation> |
</message> |
<message> |
<source>Submit Form</source> |
<translation type="obsolete">Send form</translation> |
</message> |
<message> |
<source>Limit of</source> |
<translation type="obsolete">Maksimalt</translation> |
</message> |
<message> |
<source>Check</source> |
<translation type="obsolete">Afkrydsning</translation> |
</message> |
<message> |
<source>Cross</source> |
<translation type="obsolete">kryds</translation> |
</message> |
<message> |
<source>On Focus</source> |
<translation type="obsolete">Felt har fokus</translation> |
</message> |
<message> |
<source>Go To</source> |
<translation type="obsolete">Gå til</translation> |
</message> |
<message> |
<source>Icons</source> |
<translation type="obsolete">Ikoner</translation> |
</message> |
<message> |
<source>Inset</source> |
<translation type="obsolete">indsæt</translation> |
</message> |
<message> |
<source>Name:</source> |
<translation type="obsolete">Navn:</translation> |
</message> |
<message> |
<source>Page:</source> |
<translation type="obsolete">Side:</translation> |
</message> |
<message> |
<source>Other</source> |
<translation type="obsolete">Andet</translation> |
</message> |
<message> |
<source>Plain</source> |
<translation type="obsolete">Almindelig</translation> |
</message> |
<message> |
<source>Solid</source> |
<translation type="obsolete">Massiv</translation> |
</message> |
<message> |
<source>List Box</source> |
<translation type="obsolete">Liste boks</translation> |
</message> |
<message> |
<source>Use Currency Symbol</source> |
<translation type="obsolete">Brug valutasymbol</translation> |
</message> |
<message> |
<source>Number Format</source> |
<translation type="obsolete">Nummerformat</translation> |
</message> |
<message> |
<source>Check Style:</source> |
<translation type="obsolete">afkrydsningsstil:</translation> |
</message> |
<message> |
<source>To File:</source> |
<translation type="obsolete">Til fil:</translation> |
</message> |
<message> |
<source>No Print</source> |
<translation type="obsolete">Ingen udskrift</translation> |
</message> |
<message> |
<source>Submit to URL:</source> |
<translation type="obsolete">Send til URL:</translation> |
</message> |
<message> |
<source>Calculate</source> |
<translation type="obsolete">Udregn</translation> |
</message> |
<message> |
<source>Roll Over</source> |
<translation type="obsolete">Rul over</translation> |
</message> |
<message> |
<source>Value is not validated</source> |
<translation type="obsolete">Værdi er ikke valideret</translation> |
</message> |
<message> |
<source>maximum</source> |
<translation type="obsolete">maksimum</translation> |
</message> |
<message> |
<source>Formatting</source> |
<translation type="obsolete">Formatering</translation> |
</message> |
<message> |
<source>Combo Box</source> |
<translation type="obsolete">Kombo boks</translation> |
</message> |
<message> |
<source>Custom validate script:</source> |
<translation type="obsolete">Bruger validerings script:</translation> |
</message> |
<message> |
<source>Action</source> |
<translation type="obsolete">Handling</translation> |
</message> |
<message> |
<source>Border</source> |
<translation type="obsolete">Grænse</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation type="obsolete">Annullér</translation> |
</message> |
<message> |
<source>Date Format</source> |
<translation type="obsolete">Datoformat</translation> |
</message> |
<message> |
<source>Button</source> |
<translation type="obsolete">Knap</translation> |
</message> |
<message> |
<source>Circle</source> |
<translation type="obsolete">Cirkel</translation> |
</message> |
<message> |
<source>Color:</source> |
<translation type="obsolete">Farve:</translation> |
</message> |
<message> |
<source>Field Properties</source> |
<translation type="obsolete">Felt egenskaber</translation> |
</message> |
<message> |
<source>Dashed</source> |
<translation type="obsolete">Punkteret</translation> |
</message> |
<message> |
<source>Custom</source> |
<translation type="obsolete">Brugerdefineret</translation> |
</message> |
<message> |
<source>Time Format</source> |
<translation type="obsolete">Tidsformat</translation> |
</message> |
<message> |
<source>Event:</source> |
<translation type="obsolete">Begivenhed:</translation> |
</message> |
<message> |
<source>Value is the</source> |
<translation type="obsolete">Værdien er</translation> |
</message> |
<message> |
<source>Hidden</source> |
<translation type="obsolete">Skjult</translation> |
</message> |
<message> |
<source>Custom calculation script:</source> |
<translation type="obsolete">Bruger udregnings script:</translation> |
</message> |
<message> |
<source>Enter a comma separated list of fields here</source> |
<translation type="obsolete">Indtast en komma-adskilt liste af felter her</translation> |
</message> |
<message> |
<source>Custom Scripts</source> |
<translation type="obsolete">Bruger scripts</translation> |
</message> |
<message> |
<source>Invert</source> |
<translation type="obsolete">Invertér</translation> |
</message> |
<message> |
<source>No View</source> |
<translation type="obsolete">Ingen visning</translation> |
</message> |
<message> |
<source>Normal</source> |
<translation type="obsolete">Normalt</translation> |
</message> |
<message> |
<source>Number</source> |
<translation type="obsolete">Nummer</translation> |
</message> |
<message> |
<source>Remove</source> |
<translation type="obsolete">Fjern</translation> |
</message> |
<message> |
<source>Square</source> |
<translation type="obsolete">Firkant</translation> |
</message> |
<message> |
<source>Style:</source> |
<translation type="obsolete">Stil:</translation> |
</message> |
<message> |
<source>Field is formatted as:</source> |
<translation type="obsolete">Felt er formateret som:</translation> |
</message> |
<message> |
<source>Width:</source> |
<translation type="obsolete">Bredde:</translation> |
</message> |
<message> |
<source>On Blur</source> |
<translation type="obsolete">Felt mister fokus</translation> |
</message> |
<message> |
<source>Submit Data as HTML</source> |
<translation type="obsolete">Send Data som HTML</translation> |
</message> |
<message> |
<source>Text Field</source> |
<translation type="obsolete">Tekstfelt</translation> |
</message> |
<message> |
<source>Options</source> |
<translation type="obsolete">Indstillinger</translation> |
</message> |
<message> |
<source>Icon Placement...</source> |
<translation type="obsolete">Ikon placering...</translation> |
</message> |
<message> |
<source>Mouse Up</source> |
<translation type="obsolete">Mus-taste slippes</translation> |
</message> |
<message> |
<source>Properties</source> |
<translation type="obsolete">Egenskaber</translation> |
</message> |
<message> |
<source>Pick...</source> |
<translation type="obsolete">Vælg...</translation> |
</message> |
<message> |
<source>Mouse Enter</source> |
<translation type="obsolete">Markøren går ind i felt</translation> |
</message> |
<message> |
<source>Use Icons</source> |
<translation type="obsolete">Brug ikoner</translation> |
</message> |
<message> |
<source>Read Only</source> |
<translation type="obsolete">Skrivebeskyttet</translation> |
</message> |
<message> |
<source>Pressed</source> |
<translation type="obsolete">Trykket ned</translation> |
</message> |
<message> |
<source>product</source> |
<translation type="obsolete">Produkt</translation> |
</message> |
<message> |
<source>Text for Roll Over</source> |
<translation type="obsolete">For Rul over</translation> |
</message> |
<message> |
<source>Validate</source> |
<translation type="obsolete">Validér</translation> |
</message> |
<message> |
<source>Change...</source> |
<translation type="obsolete">Vælg...</translation> |
</message> |
<message> |
<source>Percent Format</source> |
<translation type="obsolete">Procent format</translation> |
</message> |
<message> |
<source>Characters</source> |
<translation type="obsolete">Skrifttegn</translation> |
</message> |
<message> |
<source>Password</source> |
<translation type="obsolete">Adgangskode</translation> |
</message> |
<message> |
<source>Visibility:</source> |
<translation type="obsolete">Synlighed:</translation> |
</message> |
<message> |
<source>average</source> |
<translation type="obsolete">Gennemsnit</translation> |
</message> |
<message> |
<source>Beveled</source> |
<translation type="obsolete">Med skrå kanter</translation> |
</message> |
<message> |
<source>Import Data</source> |
<translation type="obsolete">Importér data</translation> |
</message> |
<message> |
<source>Mouse Exit</source> |
<translation type="obsolete">Markøren forlader felt</translation> |
</message> |
<message> |
<source>Mouse Down</source> |
<translation type="obsolete">Mus-taste trykkes ned</translation> |
</message> |
<message> |
<source>Percentage</source> |
<translation type="obsolete">Procentdel</translation> |
</message> |
<message> |
<source>Decimals:</source> |
<translation type="obsolete">Decimaler:</translation> |
</message> |
<message> |
<source>of the following fields:</source> |
<translation type="obsolete">af de følgende felter:</translation> |
</message> |
<message> |
<source>Import Data from:</source> |
<translation type="obsolete">Importér data fra:</translation> |
</message> |
<message> |
<source>and less or equal to:</source> |
<translation type="obsolete">og mindre eller lig med:</translation> |
</message> |
<message> |
<source>Keystroke:</source> |
<translation type="obsolete">Tasteanslag:</translation> |
</message> |
<message> |
<source>Multi-Line</source> |
<translation type="obsolete">Multi-linie</translation> |
</message> |
<message> |
<source>Underline</source> |
<translation type="obsolete">Understreg</translation> |
</message> |
<message> |
<source>Diamond</source> |
<translation type="obsolete">Diamand</translation> |
</message> |
<message> |
<source>Editable</source> |
<translation type="obsolete">Redigérbar</translation> |
</message> |
<message> |
<source>Appearance</source> |
<translation type="obsolete">Udseende</translation> |
</message> |
<message> |
<source>Check Box</source> |
<translation type="obsolete">Afkrydsnings boks</translation> |
</message> |
<message> |
<source>Value is not calculated</source> |
<translation type="obsolete">Værdi er ikke udregnet</translation> |
</message> |
<message> |
<source>Edit...</source> |
<translation type="obsolete">Redigér...</translation> |
</message> |
<message> |
<source>Reset Form</source> |
<translation type="obsolete">Nulstil form</translation> |
</message> |
<message> |
<source>Required</source> |
<translation type="obsolete">Behøves</translation> |
</message> |
<message> |
<source>Do Not Spell Check</source> |
<translation type="obsolete">Ingen stavekontrol</translation> |
</message> |
<message> |
<source>Outlined</source> |
<translation type="obsolete">Indrammet</translation> |
</message> |
<message> |
<source>Visible</source> |
<translation type="obsolete">Synlig</translation> |
</message> |
<message> |
<source>Value must be greater than or equal to:</source> |
<translation type="obsolete">Værdi skal være lig med eller større end:</translation> |
</message> |
<message> |
<source>Highlight</source> |
<translation type="obsolete">Højlys</translation> |
</message> |
<message> |
<source>Default is Checked</source> |
<translation type="obsolete">Standard er afkrydset</translation> |
</message> |
<message> |
<source>Example:</source> |
<translation type="obsolete">Eksempel:</translation> |
</message> |
<message> |
<source>Do Not Scroll</source> |
<translation type="obsolete">Ingen rulning</translation> |
</message> |
<message> |
<source>Text for Button Down</source> |
<translation type="obsolete">For knap ned</translation> |
</message> |
<message> |
<source>You need at least the Icon for Normal to use Icons for Buttons</source> |
<translation type="obsolete">Du behøver i det mindste normal-ikonet for at bruge ikoner på knapper</translation> |
</message> |
<message> |
<source>Selection Change</source> |
<translation type="obsolete">Ændring af valg</translation> |
</message> |
<message> |
<source>Type:</source> |
<translation type="obsolete">Type:</translation> |
</message> |
<message> |
<source>Script:</source> |
<translation type="obsolete">Script:</translation> |
</message> |
<message> |
<source>X-Pos:</source> |
<translation type="obsolete">X-Pos:</translation> |
</message> |
<message> |
<source> pt</source> |
<translation type="obsolete"> pt</translation> |
</message> |
<message> |
<source>Y-Pos:</source> |
<translation type="obsolete">Y-Pos:</translation> |
</message> |
<message> |
<source>Format:</source> |
<translation type="obsolete">Format:</translation> |
</message> |
<message> |
<source>Format</source> |
<translation type="obsolete">Format</translation> |
</message> |
<message> |
<source>sum</source> |
<translation type="obsolete">sum</translation> |
</message> |
<message> |
<source>minimum</source> |
<translation type="obsolete">minimum</translation> |
</message> |
<message> |
<source>OK</source> |
<translation type="obsolete">OK</translation> |
</message> |
<message> |
<source>Font for use with PDF 1.3:</source> |
<translation type="obsolete">Font til brug i PDF 1.3:</translation> |
</message> |
<message> |
<source>Flag is ignored for PDF 1.3</source> |
<translation type="obsolete">Kan ikke benyttes i PDF-1.3</translation> |
</message> |
<message> |
<source>PDF Files (*.pdf);;All Files (*)</source> |
<translation type="obsolete">PDF filer (*.pdf);;Alle filer (*)</translation> |
</message> |
<message> |
<source>JavaScript</source> |
<translation type="obsolete">JavaScript</translation> |
</message> |
<message> |
<source>None</source> |
<comment>highlight</comment> |
<translation type="obsolete">Ingen</translation> |
</message> |
<message> |
<source>None</source> |
<comment>action</comment> |
<translation type="obsolete">Ingen</translation> |
</message> |
<message> |
<source>Tooltip:</source> |
<translation type="obsolete">Værktøj-tip:</translation> |
</message> |
<message> |
<source>Do Not Export Value</source> |
<translation type="obsolete">Eksportér ikke værdi</translation> |
</message> |
<message> |
<source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps *.epsi);;All Files (*)</source> |
<translation type="obsolete">Billeder (*.tif *.png *.jpg *.xpm);;PostScript (*.eps *.epsi);;Alle filer (*)</translation> |
</message> |
<message> |
<source>Images (*.tif *.png *.jpg *.xpm);;%1;;All Files (*)</source> |
<translation type="obsolete">Billeder (*.tif *.png *.jpg *.xpm);;%1;;Alle filer (*)</translation> |
</message> |
<message> |
<source>Export absolute Filename</source> |
<translation type="obsolete">Eksportér absolutte filnavn</translation> |
</message> |
<message> |
<source>Submit format:</source> |
<translation type="obsolete">Send format:</translation> |
</message> |
<message> |
<source>FDF</source> |
<translation type="obsolete">FDF</translation> |
</message> |
<message> |
<source>HTML</source> |
<translation type="obsolete">HTML</translation> |
</message> |
<message> |
<source>XFDF</source> |
<translation type="obsolete">XFDF</translation> |
</message> |
<message> |
<source>PDF</source> |
<translation type="obsolete">PDF</translation> |
</message> |
</context> |
<context> |
<name>Annota</name> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="143"/> |
<source>Destination</source> |
<translation>Bestemmelsessted</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="78"/> |
<source>Link</source> |
<translation>Lænke</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="440"/> |
<source>Open</source> |
<translation>Åbn</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="77"/> |
<source>Text</source> |
<translation>Tekst</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="80"/> |
<source>External Web-Link</source> |
<translation>Ekstern web-Lænke</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="47"/> |
<source>Annotation Properties</source> |
<translation>Kommentar egenskaber</translation> |
</message> |
<message> |
<source>PDF-Documents (*.pdf);;All Files (*)</source> |
<translation type="obsolete">PDF-Dokumenter (*.pdf);; Alle filer (*)</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="79"/> |
<source>External Link</source> |
<translation>Ekstern Lænke</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="196"/> |
<location filename="../../../scribus/ui/annota.cpp" line="206"/> |
<source> pt</source> |
<translation> pt</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="82"/> |
<source>&Type:</source> |
<translation>&Type:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="117"/> |
<source>Options</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="122"/> |
<source>Icon:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="124"/> |
<source>Note</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="125"/> |
<source>Comment</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="126"/> |
<source>Key</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="127"/> |
<source>Help</source> |
<translation type="unfinished">Hjælp</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="128"/> |
<source>NewParagraph</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="129"/> |
<source>Paragraph</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="130"/> |
<source>Insert</source> |
<translation type="unfinished">Indsæt</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="131"/> |
<source>Cross</source> |
<translation type="unfinished">kryds</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="132"/> |
<source>Circle</source> |
<translation type="unfinished">Cirkel</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="137"/> |
<source>Annotation is Open</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="154"/> |
<source>C&hange...</source> |
<translation>V&ælg...</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="174"/> |
<source>&Page:</source> |
<translation>&Side:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="199"/> |
<source>&X-Pos</source> |
<translation>&X-Pos</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="208"/> |
<source>&Y-Pos:</source> |
<translation>&Y-Pos:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="440"/> |
<source>%1;;All Files (*)</source> |
<translation>%1;;Alle filer (*)</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/annota.cpp" line="156"/> |
<source>Export absolute Filename</source> |
<translation>Eksportér absolutte filnavn</translation> |
</message> |
</context> |
<context> |
<name>ApplyMasterPageDialog</name> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="269"/> |
<source>Apply Master Page</source> |
<translation>Anvend masterside</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="270"/> |
<source>&Master Page:</source> |
<translation>&Masterside:</translation> |
</message> |
<message> |
<source>Apply To</source> |
<translation type="obsolete">Anvend på</translation> |
</message> |
<message> |
<source>Current &page</source> |
<translation type="obsolete">Denne &side</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="273"/> |
<source>Alt+P</source> |
<translation>Alt+P</translation> |
</message> |
<message> |
<source>&Even pages</source> |
<translation type="obsolete">&Lige sider</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="275"/> |
<source>Alt+E</source> |
<translation>Alt+E</translation> |
</message> |
<message> |
<source>O&dd pages</source> |
<translation type="obsolete">&Ulige sider</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="277"/> |
<source>Alt+D</source> |
<translation>Alt+D</translation> |
</message> |
<message> |
<source>&All pages</source> |
<translation type="obsolete">A&lle sider</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="279"/> |
<source>Alt+A</source> |
<translation>Alt+A</translation> |
</message> |
<message> |
<source>&Within range</source> |
<translation type="obsolete">&Fra side</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="281"/> |
<source>Alt+W</source> |
<translation>Alt+W</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="283"/> |
<source>to</source> |
<translation>til</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="285"/> |
<source>Alt+O</source> |
<translation>Alt+O</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="287"/> |
<source>Alt+C</source> |
<translation>Alt+C</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="282"/> |
<source>Apply the selected master page to even, odd or all pages within the following range</source> |
<translation>Anvend den valgte masterside på lige, ulige eller alle sider indenfor de valgte sidernumre</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="52"/> |
<source>Possible Hyphenation</source> |
<translation>Mulig orddeling</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="271"/> |
<source>Apply to</source> |
<translation>Anvend på</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="272"/> |
<source>Current &Page</source> |
<translation>Denne &side</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="274"/> |
<source>&Even Pages</source> |
<translation>&Lige sider</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="276"/> |
<source>O&dd Pages</source> |
<translation>&Ulige sider</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="278"/> |
<source>&All Pages</source> |
<translation>&Alle sider</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="280"/> |
<source>&Within Range</source> |
<translation>&Indenfor udvalg</translation> |
</message> |
</context> |
<context> |
<name>ArcVectorBase</name> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="23"/> |
<source>Edit Arc</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="31"/> |
<source>Start Angle:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="51"/> |
<source>End Angle:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="71"/> |
<source>Height:</source> |
<translation type="unfinished">Højde:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="88"/> |
<source>Width:</source> |
<translation type="unfinished">Bredde:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcvectorbase.ui" line="122"/> |
<source>End Edit</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>ArcWidgetBase</name> |
<message> |
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="26"/> |
<source>Form</source> |
<translation type="unfinished">Form</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="36"/> |
<source>Start Angle:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="56"/> |
<source>End Angle:</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="117"/> |
<source>Sample Polygon</source> |
<translation type="unfinished">Prøve polygon</translation> |
</message> |
</context> |
<context> |
<name>ArrowChooser</name> |
<message> |
<source>None</source> |
<translation type="obsolete">Ingen</translation> |
</message> |
</context> |
<context> |
<name>AspellPlugin</name> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="74"/> |
<source>Spell-checking support</source> |
<translation>Stavekontrol understøttelse</translation> |
</message> |
<message> |
<source>Adds support for spell-checking via aspell. Languages can be chosen from among the installed aspell dictionaries, and spell-checking can be done on the fly, or on selected text.</source> |
<translation type="obsolete">Tilføjer understøttelse for stavekontrol via aspell. Sprog kan vælges blandt de installerede aspell ordbøger, og stavekontrol kan udføres løbende, eller på den markerede tekst.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="80"/> |
<source>0.1</source> |
<translation>0.1</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="38"/> |
<source>Spell Checker</source> |
<translation>Stavekontrol</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="76"/> |
<source>Adds support for spell-checking via Aspell. Languages can be chosen from among the installed Aspell dictionaries, and spell-checking can be done on the fly, or on selected text.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="104"/> |
<source>Aspell Plugin Error</source> |
<translation>Aspell Plugin Fejl</translation> |
</message> |
</context> |
<context> |
<name>AspellPluginBase</name> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="14"/> |
<source>Spell Check</source> |
<translation>Stavekontrol</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="119"/> |
<source>Replacement:</source> |
<translation>Erstatning:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="195"/> |
<source>The currently active dictionary. Scribus uses Aspell for dictionary support.<br />If you require updated or more dictionaries, you should install them via your system's installation system or package manager.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="279"/> |
<source>&Add Word</source> |
<translation>&Tilføj ord</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="307"/> |
<source>&Change</source> |
<translation>&Erstat</translation> |
</message> |
<message> |
<source>&Exit</source> |
<translation type="obsolete">&Afslut</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="46"/> |
<source>Not in Dictionary:</source> |
<translation>Ikke i ordbog:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="71"/> |
<source>Word that was not found in the active dictionary</source> |
<translation>Ord, der ikke blev fundet i den aktive ordbog</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="126"/> |
<source>Replacement text for the current word that was not found in the dictionary</source> |
<translation>Erstatnings-tekst for det aktive ord, der ikke blev fundet i ordbogen</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="182"/> |
<source>Active Dictionary: </source> |
<translation>Aktive ordbog:</translation> |
</message> |
<message> |
<source>The currently active dictionary. Scribus uses aspell for dictionary support.<br />If you require updated or more dictionaries, you should install them via your system's installation system or package manager.</source> |
<translation type="obsolete">Den nuværende aktive ordbog. Scribus bruger aspell for ordbogs-support<br />hvis du kræver updaterede eller flere ordbøger, så skal du installere dem via dit systems installations-system eller pakke-håndtering.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="226"/> |
<source>Ignore the current text not found in the active dictionary</source> |
<translation>Ignorér den aktuelle tekst, der ikke blev fundet i den aktive ordbog</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="229"/> |
<source>&Ignore</source> |
<translation>&Ignorér</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="248"/> |
<source>Ignore all occurrences of the current text not found in the active dictionary</source> |
<translation>Ignorér alle forekomster af den aktuelle tekst, der ikke blev fundet i den aktive ordbog</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="251"/> |
<source>I&gnore All</source> |
<translation>&Ignorér alle</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="276"/> |
<source>Add the current word to the your personal spelling dictionary for future use</source> |
<translation>Tilføj det aktuelle ord til din personlige ordbog for fremtidig brug</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="304"/> |
<source>Change the current word that was not found to that shown in the replacement entry field</source> |
<translation>Erstat det aktuelle ord, der ikke blev fundet til det, der vises i erstatnings-feltet</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="332"/> |
<source>Change all occurrences of the current word in the text that was not found to that shown in the replacement entry field</source> |
<translation>Erstat alle forekomster af det aktuelle ord, der ikke blev fundet, til det der vises i erstatnings-feltet</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="335"/> |
<source>Change A&ll</source> |
<translation>Erstat &alle</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="373"/> |
<source>Close</source> |
<translation>Luk</translation> |
</message> |
</context> |
<context> |
<name>AspellPluginImpl</name> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="48"/> |
<source>Loaded </source> |
<translation>Indlæst</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="48"/> |
<source>default </source> |
<translation>dtandard</translation> |
</message> |
<message> |
<source> aspell dictionary.</source> |
<translation type="obsolete">aspell ordbog.</translation> |
</message> |
<message> |
<source>aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in aspell speller configuration.</source> |
<translation type="obsolete">aspellplugin (AspellPluginImpl::AspellPluginImpl): Fejl i aspell stavekontrol indstilling.</translation> |
</message> |
<message> |
<source>aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in creating aspell speller.</source> |
<translation type="obsolete">aspellplugin (AspellPluginImpl::AspellPluginImpl): Fejl i oprettelse af aspell stavekontrol.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="391"/> |
<source>AspellPluginImpl::on_fskipAllBtn_clicked(): Unable to skip all instances of "</source> |
<translation>AspellPluginImpl::on_fskipAllBtn_clicked(): Ude af stand at til springe over alle forekomster af "</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="393"/> |
<source> by adding it to the session list.</source> |
<translation>ved at tilføje det til sessions-listen.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="414"/> |
<source>AspellPluginImpl::on_faddWordBtn_clicked(): Unable to add word to personal list.</source> |
<translation>AspellPluginImpl::on_faddWordBtn_clicked(): Ude af stand til at tilføje ord til personlig liste.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="267"/> |
<source>Spelling check complete</source> |
<translation>Stavekontrol tjek fuldført</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="48"/> |
<source> Aspell dictionary.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="268"/> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="460"/> |
<source>Spell Checker</source> |
<translation>Stavekrontrol</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="81"/> |
<source>No available Aspell dictionaries found. Install some, please.</source> |
<translation>Ingen tilgængelige Aspell ordbøger fundet. Indstaller venligst nogle.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="106"/> |
<source>Spell Checker Plugin Failed to Initialise. |
Configuration invalid</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="113"/> |
<source>Spell Checker Plugin Failed to Initialise.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="115"/> |
<source>No Aspell dictionaries could be found.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="461"/> |
<source>Do you want start from the beginning of the selection with new language selected?</source> |
<translation>Ønsker du at starte fra begyndelsen af det markerede med et andet sprog?</translation> |
</message> |
</context> |
<context> |
<name>AutoformButtonGroup</name> |
<message> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="36"/> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1281"/> |
<source>Arrows</source> |
<translation>Pile</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="44"/> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1282"/> |
<source>Flow Chart</source> |
<translation>Rutediagram</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="53"/> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1283"/> |
<source>Jigsaw</source> |
<translation>Puslespil</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="66"/> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1284"/> |
<source>Specials</source> |
<translation>Særlige</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="21"/> |
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1280"/> |
<source>Default Shapes</source> |
<translation>Standard figurer</translation> |
</message> |
</context> |
<context> |
<name>Barcode</name> |
<message> |
<source>&Barcode Generator...</source> |
<translation type="obsolete">&Stregkode generator...</translation> |
</message> |
<message> |
<source>Scribus frontend for Pure Postscript Barcode Writer</source> |
<translation type="obsolete">Scribus brugerflade for ren Postscript stregkode skriver</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcode.cpp" line="22"/> |
<source>&Barcode...</source> |
<translation>&Stregkode...</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcode.cpp" line="39"/> |
<source>Scribus frontend for Pure PostScript Barcode Writer</source> |
<translation>Scribus brugerflade til Ren postscript Stregkode generator</translation> |
</message> |
</context> |
<context> |
<name>BarcodeGenerator</name> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="343"/> |
<source>Error opening file: %1</source> |
<translation>Fejl ved åbning af fil: %1</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="41"/> |
<source>12 or 13 digits</source> |
<translation>12 eller 13 cifret</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="43"/> |
<source>8 digits</source> |
<translation>8 cifret</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="45"/> |
<source>11 or 12 digits</source> |
<translation>11 eller 12 cifret</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="47"/> |
<source>7 or 8 digits</source> |
<translation>7 eller 8 cifret</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="49"/> |
<source>5 digits</source> |
<translation>5 cifret</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="51"/> |
<source>2 digits</source> |
<translation>2 cifret</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="58"/> |
<source>Variable number of characters, digits and any of the symbols -. *$/+%.</source> |
<translation>Variabel antal tegn, cifre og enhver af følgende symboler -. *$/+%.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="63"/> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="67"/> |
<source>Variable number of ASCII characters and special function symbols, starting with the appropriate start character for the initial character set. UCC/EAN-128s must have a mandatory FNC 1 symbol immediately following the start character.</source> |
<translation>Variabel antal ASCII tegn og specielle funktions symboler, der starter med det rigtige start-tegn for det indledende tegnsæt. UCC/EAN-128s skal have et obligatorisk FNC 1 symbol umiddelbart efter start-tegnet.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="70"/> |
<source>Variable number of digits and any of the symbols -$:/.+ABCD.</source> |
<translation>Variabel antal cifre og enhver af følgende symboler -$:/.+ABCD.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="78"/> |
<source>Variable number of digits. An ITF-14 is 14 characters and does not have a check digit</source> |
<translation>Variabel antal cifre. En ITF-14 er på 14 tegn og har ikke et kontrol-ciffer</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="74"/> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="82"/> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="85"/> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="93"/> |
<source>Variable number of digits</source> |
<translation>Variabel antal cifre</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="89"/> |
<source>Variable number of digits and capital letters</source> |
<translation>Variabel antal cifre og store bogstaver</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="98"/> |
<source>Variable number of hexadecimal characters</source> |
<translation>Variabel antal hexadecimal tegn</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="102"/> |
<source>Variable number of characters, digits and any symbols.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="109"/> |
<source>Barcode</source> |
<translation type="unfinished">stregkode</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="377"/> |
<source>Barcode incomplete</source> |
<translation>Stregkode er mangelfuld</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="54"/> |
<source>12 or 13 digits with dashes. The legacy ISBN-10 format accepts 9 or 10 digits with dashes, but this standard was depreciated for public use after 1st January 2007. (Note: To convert an old ISBN-10 to a new ISBN-13, prefix 978- to the first 9 digits, e.g. 1-56592-479-7 -> 978-1-56592-479. The final check-digit will be calculated automatically.)</source> |
<translation>12 eller 13 cifre med tankestreger. Det forældede ISBN-10 format accepterer 9 eller 10 cifre med tankestreger, men denne standard er forældet efter 1. januar 2007. (Note: For at konvertere et gammel ISBN-10 til et nyt ISBN-13, så sæt 978- foran de første 9 cifre, f.eks. 1-56592-479-7 -> 978-1-56592-479. Det sidste tjekciffer bliver kalkuleret automatisk.)</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="167"/> |
<source>Select Type</source> |
<translation>Vælg type</translation> |
</message> |
<message> |
<source>Select Barcode Type</source> |
<translation type="obsolete">Vælg stregkode type</translation> |
</message> |
</context> |
<context> |
<name>BarcodeGeneratorBase</name> |
<message> |
<source>Barcode Creator</source> |
<translation type="obsolete">Stregkode fremstilling</translation> |
</message> |
<message> |
<source>Barcode</source> |
<translation type="obsolete">stregkode</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="135"/> |
<source>&Type:</source> |
<translation>&Type:</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="128"/> |
<source>Select one of the available barcode type here</source> |
<translation>Vælg en af de tilgængelige stregkodetyper her</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="108"/> |
<source>The numeric representation of the code itself. See the help message below</source> |
<translation>Den numeriske repræsentation af selve koden. Se hjælpeteksten nedenunder</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="98"/> |
<source>Reset the barcode samples</source> |
<translation>Nulstil stregkode prøverne</translation> |
</message> |
<message> |
<source>&Include text in barcode</source> |
<translation type="obsolete">&Inkludér tekst i stregkode</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="76"/> |
<source>Alt+I</source> |
<translation>Alt+I</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="70"/> |
<source>If checked, there will be numbers in the barcode too</source> |
<translation>sæt kryds for også at få tal i stregkoden</translation> |
</message> |
<message> |
<source>&Guard whitespace</source> |
<translation type="obsolete">Besk&yt mellemrum</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="63"/> |
<source>Alt+G</source> |
<translation>Alt+G</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="57"/> |
<source>Draw arrows to be sure of space next the code</source> |
<translation>tegn pile for at være sikker på mellemrum ved siden af koden</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="151"/> |
<source>Colors</source> |
<translation>Farver</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="173"/> |
<source>&Background</source> |
<translation>&Baggrund</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="176"/> |
<source>Alt+B</source> |
<translation>Alt+B</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="170"/> |
<source>Background color - under the code lines</source> |
<translation>Baggrundsfarve - under kode linierne</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="205"/> |
<source>&Lines</source> |
<translation>&Linier</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="208"/> |
<source>Alt+L</source> |
<translation>Alt+L</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="202"/> |
<source>Color of the lines in barcode</source> |
<translation>Farve på linierne i stregkoden</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="237"/> |
<source>&Text</source> |
<translation>Te&kst</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="240"/> |
<source>Alt+T</source> |
<translation>Alt+T</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="234"/> |
<source>Color of the text and numbers</source> |
<translation>Farve på tekst og tal</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="269"/> |
<source>Hints and help is shown here</source> |
<translation>Råd og hjælp er vist her</translation> |
</message> |
<message> |
<source>Preview of the result. 72dpi sample.</source> |
<translation type="obsolete">Visning af resultatet. 72dpi prøve.</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="115"/> |
<source>Co&de:</source> |
<translation>Ko&de:</translation> |
</message> |
<message> |
<source>I&nclude checksum</source> |
<translation type="obsolete">I&nkludér kontrolsum</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="50"/> |
<source>Alt+N</source> |
<translation>Alt+N</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="44"/> |
<source>Generate and include a checksum in barcode</source> |
<translation>Generér og inkludér en kontrolsum i stregkode</translation> |
</message> |
<message> |
<source>Incl&ude checksum digit</source> |
<translation type="obsolete">Inkl&udér kontrolsum ciffer</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="37"/> |
<source>Alt+U</source> |
<translation>Alt+U</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="31"/> |
<source>Include the checksum digit in the barcode text</source> |
<translation>Inkludér kontrolsum-cifret i stregkode-teksten</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="16"/> |
<source>Insert Barcode</source> |
<translation>Indsæt stregkode</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="25"/> |
<source>Format</source> |
<translation>Format</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="34"/> |
<source>Incl&ude Checksum Digit</source> |
<translation>Inkl&udér kontrolsum ciffer</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="47"/> |
<source>I&nclude Checksum</source> |
<translation>I&nkludér kontrolsum</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="60"/> |
<source>&Guard Whitespace</source> |
<translation>Besk&yt mellemrum</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="73"/> |
<source>&Include Text in Barcode</source> |
<translation>&Inkludér tekst i stregkode</translation> |
</message> |
</context> |
<context> |
<name>Biblio</name> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1000"/> |
<source>Delete</source> |
<translation>Slet</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1499"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1507"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1592"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1671"/> |
<source>Object</source> |
<translation>Objekt</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1750"/> |
<source>Scrapbook</source> |
<translation>Scrapbog</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1065"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1383"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1511"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1674"/> |
<source>New Entry</source> |
<translation>Ny indgang</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="998"/> |
<source>Rename</source> |
<translation>Nyt navn</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1065"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1254"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1383"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1511"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1674"/> |
<source>&Name:</source> |
<translation>&Navn:</translation> |
</message> |
<message> |
<source>Name "%1" is not unique. |
Please choose another.</source> |
<translation type="obsolete">Navnet "%1" er ikke entydigt. |
Vælg venligst et andet.</translation> |
</message> |
<message> |
<source>Choose a Directory</source> |
<translation type="obsolete">Vælg en mappe</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="761"/> |
<source>Choose a Scrapbook Directory</source> |
<translation>Vælg en scrapbog-mappe</translation> |
</message> |
<message> |
<source>Scrapbook (*.scs)</source> |
<translation type="obsolete">Scrapbog (*.scs)</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="806"/> |
<source>Choose a scrapbook file to import</source> |
<translation>Vælg en scrapbog-fil der skal importeres</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="605"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="606"/> |
<source>Main</source> |
<translation>Hovedbog</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="579"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1756"/> |
<source>Hide Directories</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="589"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1759"/> |
<source>Open Directories in a new tab</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="608"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="609"/> |
<source>Copied Items</source> |
<translation>Kopierede elementer</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1005"/> |
<source>Copy To:</source> |
<translation>Kopiér til:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1006"/> |
<source>Move To:</source> |
<translation>Flyt til:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1751"/> |
<source>Create a new scrapbook page</source> |
<translation>Opret en ny scrapbog-side</translation> |
</message> |
<message> |
<source>Load an existing scrapbook</source> |
<translation type="obsolete">Indlæs en eksisterende scrapbog</translation> |
</message> |
<message> |
<source>Save the selected scrapbook</source> |
<translation type="obsolete">Gem den valgte scrapbog</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1753"/> |
<source>Import a scrapbook file from Scribus <=1.3.2</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<source>Import an scrapbook file from Scribus <=1.3.2</source> |
<translation type="obsolete">Importér en scrapbog-fil fra Scribus <=1.3.2</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1754"/> |
<source>Close the selected scrapbook</source> |
<translation>Luk den valgte scrapbog</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1254"/> |
<source>New Name</source> |
<translation>Nyt navn</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="582"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1757"/> |
<source>Hide Images</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="585"/> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1758"/> |
<source>Hide Vector files</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="808"/> |
<source>Scrapbook (*.scs *.SCS)</source> |
<translation>Scrapbog (*.scs *.SCS)</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="994"/> |
<source>Paste to Page</source> |
<translation>Indsæt på side</translation> |
</message> |
<message> |
<source>Save as...</source> |
<translation type="obsolete">Gem som...</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1044"/> |
<source>Close</source> |
<translation>Luk</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1047"/> |
<source>Delete Contents</source> |
<translation>Slet indhold</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1209"/> |
<source>Do you really want to delete all entries?</source> |
<translation>Ønsker du virkelig at slette alle indgange?</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1752"/> |
<source>Go up one Directory</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1755"/> |
<source>Configure the scrapbook</source> |
<translation type="unfinished"></translation> |
</message> |
</context> |
<context> |
<name>BookMView</name> |
<message> |
<source>Move Bookmark</source> |
<translation type="obsolete">Flyt bogmærke</translation> |
</message> |
<message> |
<source>Cancel</source> |
<translation type="obsolete">Annullér</translation> |
</message> |
<message> |
<source>Bookmarks</source> |
<translation type="obsolete">Bogmærker</translation> |
</message> |
<message> |
<source>Insert Bookmark</source> |
<translation type="obsolete">Indsæt bogmærke</translation> |
</message> |
</context> |
<context> |
<name>BookPalette</name> |
<message> |
<location filename="../../../scribus/ui/bookmarkpalette.cpp" line="48"/> |
<source>Bookmarks</source> |
<translation>Bogmærker</translation> |
</message> |
</context> |
<context> |
<name>ButtonIcon</name> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="90"/> |
<source>Icon</source> |
<translation>Ikon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="56"/> |
<source>Never</source> |
<translation>Aldrig</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="124"/> |
<source>Reset</source> |
<translation>Nulstil</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="42"/> |
<source>Caption overlays Icon</source> |
<translation>Tekst oven på ikon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="63"/> |
<source>Scale How:</source> |
<translation>Skalér:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="38"/> |
<source>Layout:</source> |
<translation>Udformning</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/> |
<source>Caption only</source> |
<translation>Kun tekst</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/> |
<source>Caption below Icon</source> |
<translation>Tekst under ikon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="55"/> |
<source>Always</source> |
<translation>Altid</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="121"/> |
<source>Cancel</source> |
<translation>Annullér</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="50"/> |
<source>Scale:</source> |
<translation>Skalér:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/> |
<source>Icon only</source> |
<translation>Kun ikon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="42"/> |
<source>Caption left to Icon</source> |
<translation>Tekst til venstre for ikon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="42"/> |
<source>Caption right to Icon</source> |
<translation>Tekst til højre for ikon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="56"/> |
<source>When Icon is too big</source> |
<translation>Når ikon er for stor</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="67"/> |
<source>Non Proportional</source> |
<translation>Ikke Proportionel</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="66"/> |
<source>Proportional</source> |
<translation>Proportionel</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="29"/> |
<source>Icon Placement</source> |
<translation>Ikon placering</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/> |
<source>Caption above Icon</source> |
<translation>Tekst over ikon</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="117"/> |
<source>OK</source> |
<translation>OK</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/buttonicon.cpp" line="55"/> |
<source>When Icon is too small</source> |
<translation>Når ikon er for lille</translation> |
</message> |
</context> |
<context> |
<name>CMSPrefs</name> |
<message> |
<location filename="../../../scribus/ui/cmsprefs.cpp" line="79"/> |
<source>Absolute Colorimetric</source> |
<translation>Absolut kolorimetri</translation> |
</message> |
<message> |
<source>System Profiles</source> |
<translation type="obsolete">System profiler</translation> |
</message> |
<message> |
<source>Rendering Intents</source> |
<translation type="obsolete">Farvetilpasningsmetoder</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefs.cpp" line="26"/> |
<source>Monitor profiles can only be changed when no documents are currently opened.</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefs.cpp" line="78"/> |
<source>Perceptual</source> |
<translation>Opfattelsesmæssig</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefs.cpp" line="78"/> |
<source>Relative Colorimetric</source> |
<translation>Relativ kolorimetri</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefs.cpp" line="79"/> |
<source>Saturation</source> |
<translation>Mætningsgrad</translation> |
</message> |
<message> |
<source>Color profile that you have generated or received from the manufacturer. |
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source> |
<translation type="obsolete">Farveprofil som du har lavet eller har modtaget fra producenten. |
Denne profil bør være beregnet for din skærm og ikke en generel profil (d.v.s sRGB).</translation> |
</message> |
<message> |
<source>Color profile for your printer model from the manufacturer. |
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source> |
<translation type="obsolete">Farveprofil for din printer fra producenten. |
Denne profil bør være beregnet for din printer og ikke en generel profil (d.v.s sRGB).</translation> |
</message> |
<message> |
<source>Black Point Compensation is a method of improving contrast in photos. |
It is recommended that you enable this if you have photos in your document.</source> |
<translation type="obsolete">Sortpunkt kompensation er en metode til at forbedre kontrasten i fotografier. |
Det anbefales at bruge dette, hvis der er fotografier i dokumentet.</translation> |
</message> |
<message> |
<source>Enable 'soft proofing' of how your document colors will print, |
based on the chosen printer profile.</source> |
<translation type="obsolete">Viser på skærmen hvordan dokumentets farver udskrives, |
baseret på den valgte printerprofil.</translation> |
</message> |
<message> |
<source>Method of showing colors on the screen which may not print properly. |
This requires very accurate profiles and serves only as a warning.</source> |
<translation type="obsolete">Metode til at vise på skærmen de farver, som måske ikke udskrives rigtigt. |
Dette kræver meget nøjagtige profiler og er kun ment som en advarsel.</translation> |
</message> |
<message> |
<source>&Activate Color Management</source> |
<translation type="obsolete">&Aktiver farvestyring</translation> |
</message> |
<message> |
<source>&Monitor:</source> |
<translation type="obsolete">&Skærm:</translation> |
</message> |
<message> |
<source>P&rinter:</source> |
<translation type="obsolete">&Printer:</translation> |
</message> |
<message> |
<source>Sim&ulate Printer on the Screen</source> |
<translation type="obsolete">Sim&ulér printer på skærmen</translation> |
</message> |
<message> |
<source>Mark Colors out of &Gamut</source> |
<translation type="obsolete">Markér farver uden for s&kalaen (gamut)</translation> |
</message> |
<message> |
<source>Use &Blackpoint Compensation</source> |
<translation type="obsolete">Bru&g sortpunkt kompensation</translation> |
</message> |
<message> |
<source>&RGB Pictures:</source> |
<translation type="obsolete">&RGB billeder:</translation> |
</message> |
<message> |
<source>&CMYK Pictures:</source> |
<translation type="obsolete">&CMYK billeder:</translation> |
</message> |
<message> |
<source>Default color profile for imported CMYK images</source> |
<translation type="obsolete">Standard Farveprofil for importerede CMYK billeder</translation> |
</message> |
<message> |
<source>Default color profile for imported RGB images</source> |
<translation type="obsolete">Standard Farveprofil for importerede RGB billeder</translation> |
</message> |
<message> |
<source>&RGB Solid Colors:</source> |
<translation type="obsolete">&RGB massive farver:</translation> |
</message> |
<message> |
<source>&CMYK Solid Colors:</source> |
<translation type="obsolete">&CMYK massive farver:</translation> |
</message> |
<message> |
<source>Pictures:</source> |
<translation type="obsolete">Billeder:</translation> |
</message> |
<message> |
<source>Sol&id Colors:</source> |
<translation type="obsolete">Mass&ive farver:</translation> |
</message> |
<message> |
<source>Convert all colors to printer space</source> |
<translation type="obsolete">Konvertér alle farver til printer rum</translation> |
</message> |
<message> |
<source>Default color profile for solid RGB colors on the page</source> |
<translation type="obsolete">Standard Farveprofil for massive RGB farver på siden</translation> |
</message> |
<message> |
<source>Default color profile for solid CMYK colors on the page</source> |
<translation type="obsolete">Standard Farveprofil for massive CMYK farver på siden</translation> |
</message> |
<message> |
<source>Default rendering intent for solid colors. Unless you know why to change it, |
Relative Colorimetric or Perceptual should be chosen.</source> |
<translation type="obsolete">Standard gengivelse beregnet for din skærm. Hvis du ikke ved hvorfor man ændrer det, |
vælg da relativ kolorimetri eller opfattelsesmæssig.</translation> |
</message> |
<message> |
<source>Default rendering intent for images. Unless you know why to change it, |
Relative Colorimetric or Perceptual should be chosen.</source> |
<translation type="obsolete">Standard gengivelse beregnet for din skærm. Hvis du ikke ved hvorfor man ændrer det, |
vælg da relativ kolorimetri eller opfattelsesmæssig.</translation> |
</message> |
<message> |
<source>Simulate a full color managed environment : |
all colors, rgb or cmyk, are converted to printer color space.</source> |
<translation type="obsolete">Simulér en fuldigstændig farvestyret omgivelse: |
alle farver, rgb eller cmyk, er konverteret til printerens farverum.</translation> |
</message> |
<message> |
<source>Images:</source> |
<translation type="obsolete">Billeder:</translation> |
</message> |
</context> |
<context> |
<name>CMSPrefsBase</name> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="20"/> |
<source>Form</source> |
<translation>Form</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="32"/> |
<source>&Activate Color Management</source> |
<translation>&Aktiver farvestyring</translation> |
</message> |
<message> |
<source>System Profiles</source> |
<translation type="obsolete">System profiler</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="54"/> |
<source>&RGB Images:</source> |
<translation>&RGB Billeder:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="70"/> |
<source>Default color profile for imported RGB images</source> |
<translation>Standard Farveprofil for importerede RGB billeder</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="77"/> |
<source>&CMYK Images:</source> |
<translation>&CMYK Billeder:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="93"/> |
<source>Default color profile for imported CMYK images</source> |
<translation>Standard Farveprofil for importerede CMYK billeder</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="100"/> |
<source>&RGB Solid Colors:</source> |
<translation>&RGB massive farver:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="116"/> |
<source>Default color profile for solid RGB colors on the page</source> |
<translation>Standard Farveprofil for massive RGB farver på siden</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="123"/> |
<source>&CMYK Solid Colors:</source> |
<translation>&CMYK massive farver:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="139"/> |
<source>Default color profile for solid CMYK colors on the page</source> |
<translation>Standard Farveprofil for massive CMYK farver på siden</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="245"/> |
<source>Document Options</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="278"/> |
<source>Simulate printer on Screen</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="313"/> |
<source>Monitor Profile</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="325"/> |
<source>&Monitor:</source> |
<translation>&Skærm:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="341"/> |
<source>Color profile that you have generated or received from the manufacturer. |
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source> |
<translation>Farveprofil som du har lavet eller har modtaget fra producenten. |
Denne profil burde være specifik for din skærm og ikke en generel profil (d.v.s sRGB).</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="146"/> |
<source>P&rinter:</source> |
<translation>&Printer:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="42"/> |
<source>Document Profiles</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="162"/> |
<source>Color profile for your printer model from the manufacturer. |
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source> |
<translation>Farveprofil for din printer fra producenten. |
Denne profil burde være specifik for din printer og ikke en generel profil (d.v.s sRGB).</translation> |
</message> |
<message> |
<source>Rendering Intents</source> |
<translation type="obsolete">Gengivelses-hensigter</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="188"/> |
<source>Images:</source> |
<translation>Billeder:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="204"/> |
<source>Default rendering intent for images. Unless you know why to change it, |
Relative Colorimetric or Perceptual should be chosen.</source> |
<translation>Standard gengivelse beregnet for billeder. Hvis du ikke ved hvorfor man ændrer det, |
vælg da relativ kolorimetri eller opfattelsesmæssig.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="212"/> |
<source>Sol&id Colors:</source> |
<translation>Mass&ive farver:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="228"/> |
<source>Default rendering intent for solid colors. Unless you know why to change it, |
Relative Colorimetric or Perceptual should be chosen.</source> |
<translation>Standard gengivelse beregnet for massive farver. Hvis du ikke ved hvorfor man ændrer det, |
vælg da relativ kolorimetri eller opfattelsesmæssig.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="274"/> |
<source>Enable 'soft proofing' of how your document colors will print, |
based on the chosen printer profile.</source> |
<translation>Aktiverer 'godkendelse fra skærm' af hvordan dokumentets farver udskrives, |
baseret på den valgte printerprofil.</translation> |
</message> |
<message> |
<source>Sim&ulate Printer on the Screen</source> |
<translation type="obsolete">Sim&ulér printer på skærmen</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="285"/> |
<source>Simulate a full color managed environment : |
all colors, rgb or cmyk, are converted to printer color space.</source> |
<translation>Simulér en fuldigstændig farvestyret omgivelse: |
alle farver, rgb eller cmyk, er konverteret til printerens farverum.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="289"/> |
<source>Convert all colors to printer space</source> |
<translation>Konvertér alle farver til printer farverum</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="296"/> |
<source>Method of showing colors on the screen which may not print properly. |
This requires very accurate profiles and serves only as a warning.</source> |
<translation>Metode til at vise på skærmen de farver, som måske ikke udskrives rigtigt. |
Dette kræver meget nøjagtige profiler og tjener kun som en advarsel.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="300"/> |
<source>Mark Colors out of &Gamut</source> |
<translation>Markér farver uden for s&kalaen (gamut)</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="263"/> |
<source>Black Point Compensation is a method of improving contrast in photos. |
It is recommended that you enable this if you have photos in your document.</source> |
<translation>Sortpunkt kompensation er en metode til at forbedre kontrasten i fotografier. |
Det anbefales at bruge dette, hvis der er fotografier i dokumentet.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="176"/> |
<source>Document Rendering Intents</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="267"/> |
<source>Use &Blackpoint Compensation</source> |
<translation>Bru&g sortpunkt kompensation</translation> |
</message> |
</context> |
<context> |
<name>CMYKChoose</name> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="133"/> |
<source>New</source> |
<translation>Ny</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="150"/> |
<source>Old</source> |
<translation>Gammel</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="116"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="707"/> |
<source>Web Safe RGB</source> |
<translation>Web-sikker RGB</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="90"/> |
<source>Edit Color</source> |
<translation>Redigér farve</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="411"/> |
<source>Static Color Bars</source> |
<translation>Statiske farvesøjler</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="413"/> |
<source>Dynamic Color Bars</source> |
<translation>Dynamiske farvesøjler</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="114"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="632"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="842"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="849"/> |
<source>CMYK</source> |
<translation>CMYK</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="115"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="384"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="854"/> |
<source>RGB</source> |
<translation>RGB</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="191"/> |
<source>Scribus Swatches</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="195"/> |
<source>User Swatches</source> |
<translation type="unfinished"></translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="235"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="657"/> |
<source>C:</source> |
<translation>C:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="262"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="658"/> |
<source>M:</source> |
<translation>M:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="289"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="659"/> |
<source>Y:</source> |
<translation>Y:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="316"/> |
<source>K:</source> |
<translation>K:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="696"/> |
<source>R:</source> |
<translation>R:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="697"/> |
<source>G:</source> |
<translation>G:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="698"/> |
<source>B:</source> |
<translation>B:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="257"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="284"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="311"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="338"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="654"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="655"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="656"/> |
<source> %</source> |
<translation> %</translation> |
</message> |
<message> |
<source>HSV-Colormap</source> |
<translation type="obsolete">HSV-Farvekort</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="99"/> |
<source>&Name:</source> |
<translation>&Navn:</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="109"/> |
<source>Color &Model</source> |
<translation>Farve &model</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="123"/> |
<source>Is Spot Color</source> |
<translation>Er spot-farve</translation> |
</message> |
<message> |
<source>Is Registration Color</source> |
<translation type="obsolete">Er pasmærke-farve</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="945"/> |
<source>You cannot create a color named "%1". |
It is a reserved name for transparent color</source> |
<translation>Du kan ikke oprette en farve, der hedder "%1". |
Navnet er reserveret for gennemsigtig farve</translation> |
</message> |
<message> |
<source>Choosing this will enable printing this on all plates. Registration colors are used for printer marks such as crop marks, registration marks and the like. These are not typically used in the layout itself.</source> |
<translation type="obsolete">Ved at vælge dette vil aktivere udskrivning af dette på alle plader. Pasmærke-farver bruges f.eks til skæremærker, pasmærker og lignende. Disse er ikke typisk brugt i selve sidens layout.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="359"/> |
<source>Choosing this will make this color a spot color, thus creating another spot when creating plates or separations. This is used most often when a logo or other color needs exact representation or cannot be replicated with CMYK inks. Metallic and fluorescent inks are good examples which cannot be easily replicated with CMYK inks.</source> |
<translation>Ved at vælge dette vil gøre denne farve til en spot-farve, og således lave endnu en spot, når der laves plader eller separationer. Det er ofte brugt, når et logo eller anden farve behøver at være helt præcis eller ikke kan laves med CMYK trykfarver. Metalliske og fluorescerende farver er gode eksempler på farver, som ikke særlig let kan laves med CMYK trykfarver.</translation> |
</message> |
<message> |
<source>If color management is enabled, a triangle warning indicator is a warning the the color maybe outside of the color gamut of the current printer profile selected. What this means is the color may not print exactly as indicated on screen. More hints about gamut warnings are in the online help under Color Management.</source> |
<translation type="obsolete">Hvis farvestyring er aktiveret, vil en trekantet advarsels-indikator betyde, at farven måske er uden for farveskalaen (gamut) i den valgte printer-profil. Hvad dette betyder er, at farven måske ikke trykkes præcist, som det er vist på skærmen. Flere råd om gamut advarsler findes i Scribus manualen under "Color Management".</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="954"/> |
<source>The name of the color already exists, |
please choose another one.</source> |
<translation>Navnet på farven eksisterer allerede, |
vælg venligst et andet navn.</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="727"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="728"/> |
<source>If color management is enabled, a triangle warning indicator is a warning that the color maybe outside of the color gamut of the current printer profile selected. What this means is the color may not print exactly as indicated on screen. More hints about gamut warnings are in the online help under Color Management.</source> |
<translation>Hvis farvestyring er aktiveret, vil en trekantet advarsels-indikator betyde, at farven måske er uden for farveskalaen (gamut) i den valgte printer-profil. Dette betyder, at farven måske ikke trykkes præcist, som det er vist på skærmen. Flere råd om gamut advarsler findes i "online" hjælpen under "Color Management".</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="938"/> |
<source>You cannot create a color without a name |
Please give it a name</source> |
<translation>Du kan ikke oprette en farve uden et navn |
Give den venligst et navn</translation> |
</message> |
<message> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="188"/> |
<location filename="../../../scribus/ui/cmykfw.cpp" line="199"/> |
<source>HSV Color Map</source> |
<translation>HSV Farvekort</translation> |
</message> |
</context> |
<context> |
<name>CStyleP</name> |
<message> |
<source>Form1</source> |
<translation type="obsolete">Form1</translation> |
</message> |
<message> |
<source>Based On:</source> |
<translation type="obsolete">Baseret på:</translation> |
</message> |
<message> |
<source>Basic Formatting</source> |
<translation type="obsolete">Grundlæggende formatering</translation> |
</message> |
<message> |
<source>Advanced Formatting</source> |
<translation type="obsolete">Avanceret formatering</translation> |
</message> |
<message> |
<source>Colors</source> |
<translation type="obsolete">Farver</translation> |
</message> |
</context> |
<context> |
<name>CStylePBase</name> |
<message> |
<source>Form1</source> |
<translation type="obsolete">Form1</translation> |
</message> |
<message> |
<source>Based On:</source> |
<translation type="obsolete">Baseret på:</translation> |
</message> |
<message> |
<source>Basic Formatting</source> |
<translation type="obsolete">Grundlæggende formatering</translation> |
</message> |
<message> |
<source>Advanced Formatting</source> |
<translation type="obsolete">Avanceret formatering</translation> |
</message> |
<message> |
<source>Colors</source> |
<translation type="obsolete">Farver</translation> |
</message> |
</context> |
<context> |
<name>CWDialog</name> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="320"/> |
<source>Merging colors</source> |
<translation>Sammenfletter farver</translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="326"/> |
<source>Error: </source> |
<translation>Fejl: </translation> |
</message> |
<message> |
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="326"/> |
|