Commit c733ca7d authored by Krzysztof Kutt's avatar Krzysztof Kutt
Browse files

GUI translated into English

Showing with 9 additions and 9 deletions
+9 -9
......@@ -36,7 +36,7 @@ class action_plugin_prov_prov extends DokuWiki_Action_Plugin
"@prefix dc: <http://purl.org/dc/elements/1.1/> .\n" .
"@prefix lokipage: <{$adres_wiki}> .\n" .
"@prefix lokievent: <{$adres_wiki}special:lokievent#> .\n" .
"@prefix lokiuser: <{$adres_wiki}user:> .\n\n";
"@prefix lokiuser: <{$adres_wiki}user:> .";
}
/**
......@@ -52,7 +52,7 @@ class action_plugin_prov_prov extends DokuWiki_Action_Plugin
"\tprov:wasGeneratedBy lokievent:created_{$strona}.{$nowaRev} .\n" .
"lokievent:created_{$strona}.{$nowaRev} a prov:Activity ;\n" .
"\tprov:wasAssociatedWith {$autor} ;\n" .
"\tdc:description \"{$komentarz}\"" .
"\tlokirel:comment \"{$komentarz}\"" .
((count($linki) > 0) ?
(" ;\n\tprov:used " . implode(" ,\n\t\t", $linki) . " .\n\n") :
(" .\n\n"));
......@@ -72,7 +72,7 @@ class action_plugin_prov_prov extends DokuWiki_Action_Plugin
"\tprov:wasGeneratedBy lokievent:edited_{$strona}.{$nowaRev} .\n" .
"lokievent:edited_{$strona}.{$nowaRev} a prov:Activity ;\n" .
"\tprov:wasAssociatedWith {$autor} ;\n" .
"\tdc:description \"{$komentarz}\" ;\n" .
"\tlokirel:comment \"{$komentarz}\" ;\n" .
"\tprov:used " . implode(" ,\n\t\t", $linki) . " .\n\n";
}
......@@ -86,7 +86,7 @@ class action_plugin_prov_prov extends DokuWiki_Action_Plugin
return "lokievent:deleted_{$strona}.{$nowaRev} a prov:Activity ;\n" .
"\tprov:used lokipage:{$strona}.{$staraRev} ;\n" .
"\tprov:wasAssociatedWith {$autor} ;\n" .
"\tdc:description \"{$komentarz}\" .\n\n";
"\tlokirel:comment \"{$komentarz}\" .\n\n";
}
/**
......@@ -175,24 +175,24 @@ class action_plugin_prov_prov extends DokuWiki_Action_Plugin
$html .= '
<br/>
<div>
<h4>PROV</h4>';
<!-- <h4>PROV</h4> -->';
// Textarea for lins with label
$html .= '
<div style="display: inline-block; vertical-align: top;">
<label style="cursor: text;">Linki do wykorzystanych zasobów (jeden w kadżdym wierszu):</label><br/>
<textarea name="usedSites" id="usedsites" cols="50" rows="6"></textarea>
<label style="cursor: text;">URIs/URLs for used resources (put one URI in one line):</label><br/>
<textarea name="usedSites" id="usedsites" cols="60" rows="6"></textarea>
</div>';
// List for the available pages (empty so far) with label
$html .= '
<div style="display: inline-block; vertical-align: top; margin-left: 10px;">
<label style="cursor: text;">Dostępne stony (dwukrotne kliknięcie wstawia jako użyta):</label></br>
<label style="cursor: text;">Select wiki pages that were used as resources (double-click on page):</label></br>
<select id="pagelist" size="5" style="width: 350px;" ondblclick="pageAdded();"></select></br>';
// Filter text field with label. On key release the list is updated
$html .= '
<label style="cursor: text;">Filtr: </label>
<label style="cursor: text;">Filter: </label>
<input type="text" id="pagefilter" onkeyup="filterChanged();" size="35"/>';
// Hidden field containing the list of all pages. It is used by filtering function.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment