Merge remote-tracking branch 'upstream/master'
Conflicts: boot.php database.sql library/fancybox/jquery.fancybox-1.3.4.css mod/search.php update.php
|
@ -1,37 +1,40 @@
|
|||
<script>
|
||||
$(function(){
|
||||
|
||||
$("#cnftheme").fancybox({
|
||||
width: 800,
|
||||
autoDimensions: false,
|
||||
onStart: function(){
|
||||
var theme = $("#id_theme :selected").val();
|
||||
var theme_mobile = $("#id_theme_mobile :selected").val();
|
||||
$("#cnftheme").attr('href',"$baseurl/admin/themes/"+theme);
|
||||
},
|
||||
onComplete: function(){
|
||||
$("div#fancybox-content form").submit(function(e){
|
||||
var url = $(this).attr('action');
|
||||
// can't get .serialize() to work...
|
||||
var data={};
|
||||
$(this).find("input").each(function(){
|
||||
data[$(this).attr('name')] = $(this).val();
|
||||
});
|
||||
$(this).find("select").each(function(){
|
||||
data[$(this).attr('name')] = $(this).children(":selected").val();
|
||||
});
|
||||
console.log(":)", url, data);
|
||||
$("#cnftheme").click(function(){
|
||||
$.colorbox({
|
||||
width: 800,
|
||||
height: '90%',
|
||||
/*onOpen: function(){
|
||||
var theme = $("#id_theme :selected").val();
|
||||
$("#cnftheme").attr('href',"$baseurl/admin/themes/"+theme);
|
||||
},*/
|
||||
href: "$baseurl/admin/themes/" + $("#id_theme :selected").val(),
|
||||
onComplete: function(){
|
||||
$("div#fancybox-content form").submit(function(e){
|
||||
var url = $(this).attr('action');
|
||||
// can't get .serialize() to work...
|
||||
var data={};
|
||||
$(this).find("input").each(function(){
|
||||
data[$(this).attr('name')] = $(this).val();
|
||||
});
|
||||
$(this).find("select").each(function(){
|
||||
data[$(this).attr('name')] = $(this).children(":selected").val();
|
||||
});
|
||||
console.log(":)", url, data);
|
||||
|
||||
$.post(url, data, function(data) {
|
||||
if(timer) clearTimeout(timer);
|
||||
NavUpdate();
|
||||
$.fancybox.close();
|
||||
})
|
||||
$.post(url, data, function(data) {
|
||||
if(timer) clearTimeout(timer);
|
||||
NavUpdate();
|
||||
$.colorbox.close();
|
||||
})
|
||||
|
||||
return false;
|
||||
});
|
||||
return false;
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
|
5000
view/ca/messages.po
|
@ -7,7 +7,7 @@
|
|||
<input type="hidden" name="type" value="$type" />
|
||||
<input type="hidden" name="profile_uid" value="$profile_uid" />
|
||||
<input type="hidden" name="parent" value="$parent" />
|
||||
<input type="hidden" name="return" value="$return_path" />
|
||||
{#<!--<input type="hidden" name="return" value="$return_path" />-->#}
|
||||
<input type="hidden" name="jsreload" value="$jsreload" />
|
||||
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
|
||||
<input type="hidden" name="post_id_random" value="$rand_num" />
|
||||
|
|
14
view/confirm.tpl
Normal file
|
@ -0,0 +1,14 @@
|
|||
<center>
|
||||
<form action="$confirm_url" id="confirm-form" method="$method">
|
||||
|
||||
<span id="confirm-message">$message</span>
|
||||
{{ for $extra_inputs as $input }}
|
||||
<input type="hidden" name="$input.name" value="$input.value" />
|
||||
{{ endfor }}
|
||||
|
||||
<input class="confirm-button" id="confirm-submit-button" type="submit" name="$confirm_name" value="$confirm" />
|
||||
<input class="confirm-button" id="confirm-cancel-button" type="submit" name="canceled" value="$cancel" />
|
||||
|
||||
</form>
|
||||
</center>
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
{{ endif }}
|
||||
|
||||
|
||||
<li><a href="network/?cid=$contact_id" id="contact-edit-view-recent">$lblrecent</a></li>
|
||||
<li><a href="network/0?nets=all&cid=$contact_id" id="contact-edit-view-recent">$lblrecent</a></li>
|
||||
{{ if $lblsuggest }}
|
||||
<li><a href="fsuggest/$contact_id" id="contact-edit-suggest">$lblsuggest</a></li>
|
||||
{{ endif }}
|
||||
|
|
|
@ -17,9 +17,9 @@ tinyMCE.init({
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
content_css: "$baseurl/view/custom_tinymce.css"
|
||||
|
||||
|
||||
|
|
|
@ -11,7 +11,13 @@
|
|||
<span onclick="openClose('contact-photo-menu-$contact.id');" class="fakelink contact-photo-menu-button" id="contact-photo-menu-button-$contact.id">menu</span>
|
||||
<div class="contact-photo-menu" id="contact-photo-menu-$contact.id">
|
||||
<ul>
|
||||
$contact.photo_menu
|
||||
{{ for $contact.photo_menu as $c }}
|
||||
{{ if $c.2 }}
|
||||
<li><a target="redir" href="$c.1">$c.0</a></li>
|
||||
{{ else }}
|
||||
<li><a href="$c.1">$c.0</a></li>
|
||||
{{ endif }}
|
||||
{{ endfor }}
|
||||
</ul>
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
|
1851
view/de/messages.po
|
@ -53,6 +53,7 @@ $a->strings["Description:"] = "Beschreibung";
|
|||
$a->strings["Location:"] = "Ort:";
|
||||
$a->strings["Title:"] = "Titel:";
|
||||
$a->strings["Share this event"] = "Veranstaltung teilen";
|
||||
$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
|
||||
$a->strings["Cancel"] = "Abbrechen";
|
||||
$a->strings["Tag removed"] = "Tag entfernt";
|
||||
$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
|
||||
|
@ -67,13 +68,15 @@ $a->strings["Yes"] = "Ja";
|
|||
$a->strings["No"] = "Nein";
|
||||
$a->strings["Photo Albums"] = "Fotoalben";
|
||||
$a->strings["Contact Photos"] = "Kontaktbilder";
|
||||
$a->strings["Upload New Photos"] = "Weitere Fotos hochladen";
|
||||
$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
|
||||
$a->strings["everybody"] = "jeder";
|
||||
$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
|
||||
$a->strings["Profile Photos"] = "Profilbilder";
|
||||
$a->strings["Album not found."] = "Album nicht gefunden.";
|
||||
$a->strings["Delete Album"] = "Album löschen";
|
||||
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?";
|
||||
$a->strings["Delete Photo"] = "Foto löschen";
|
||||
$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?";
|
||||
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
|
||||
$a->strings["a photo"] = "einem Foto";
|
||||
$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von ";
|
||||
|
@ -89,10 +92,14 @@ $a->strings["New album name: "] = "Name des neuen Albums: ";
|
|||
$a->strings["or existing album name: "] = "oder existierender Albumname: ";
|
||||
$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
|
||||
$a->strings["Permissions"] = "Berechtigungen";
|
||||
$a->strings["Show to Groups"] = "Zeige den Gruppen";
|
||||
$a->strings["Show to Contacts"] = "Zeige den Kontakten";
|
||||
$a->strings["Private Photo"] = "Privates Foto";
|
||||
$a->strings["Public Photo"] = "Öffentliches Foto";
|
||||
$a->strings["Edit Album"] = "Album bearbeiten";
|
||||
$a->strings["Show Newest First"] = "Zeige neueste zuerst";
|
||||
$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
|
||||
$a->strings["View Photo"] = "Fotos betrachten";
|
||||
$a->strings["View Photo"] = "Foto betrachten";
|
||||
$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
|
||||
$a->strings["Photo not available"] = "Foto nicht verfügbar";
|
||||
$a->strings["View photo"] = "Fotos ansehen";
|
||||
|
@ -108,6 +115,8 @@ $a->strings["New album name"] = "Name des neuen Albums";
|
|||
$a->strings["Caption"] = "Bildunterschrift";
|
||||
$a->strings["Add a Tag"] = "Tag hinzufügen";
|
||||
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
|
||||
$a->strings["Private photo"] = "Privates Foto";
|
||||
$a->strings["Public photo"] = "Öffentliches Foto";
|
||||
$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
|
||||
$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
|
||||
$a->strings["Share"] = "Teilen";
|
||||
|
@ -130,13 +139,12 @@ $a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterun
|
|||
$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
|
||||
$a->strings["Item not found"] = "Beitrag nicht gefunden";
|
||||
$a->strings["Edit post"] = "Beitrag bearbeiten";
|
||||
$a->strings["Post to Email"] = "An E-Mail senden";
|
||||
$a->strings["Edit"] = "Bearbeiten";
|
||||
$a->strings["Upload photo"] = "Foto hochladen";
|
||||
$a->strings["upload photo"] = "Bild hochladen";
|
||||
$a->strings["Attach file"] = "Datei anhängen";
|
||||
$a->strings["attach file"] = "Datei anhängen";
|
||||
$a->strings["Insert web link"] = "einen Link einfügen";
|
||||
$a->strings["Insert web link"] = "Einen Link einfügen";
|
||||
$a->strings["web link"] = "Weblink";
|
||||
$a->strings["Insert video link"] = "Video-Adresse einfügen";
|
||||
$a->strings["video link"] = "Video-Link";
|
||||
|
@ -147,7 +155,7 @@ $a->strings["set location"] = "Ort setzen";
|
|||
$a->strings["Clear browser location"] = "Browser-Standort leeren";
|
||||
$a->strings["clear location"] = "Ort löschen";
|
||||
$a->strings["Permission settings"] = "Berechtigungseinstellungen";
|
||||
$a->strings["CC: email addresses"] = "Cc:-E-Mail-Addressen";
|
||||
$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
|
||||
$a->strings["Public post"] = "Öffentlicher Beitrag";
|
||||
$a->strings["Set title"] = "Titel setzen";
|
||||
$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
|
||||
|
@ -376,6 +384,7 @@ $a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
|
|||
$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
|
||||
$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
|
||||
$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
|
||||
$a->strings["Do you really want to delete this contact?"] = "Möchtest du wirklich diesen Kontakt löschen?";
|
||||
$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
|
||||
$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
|
||||
$a->strings["You are sharing with %s"] = "Du teilst mit %s";
|
||||
|
@ -567,6 +576,9 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschafts
|
|||
$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
|
||||
$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
|
||||
$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
|
||||
$a->strings["Default Private Post"] = "Privater Standardbeitrag";
|
||||
$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
|
||||
$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
|
||||
$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
|
||||
$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
|
||||
$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
|
||||
|
@ -748,8 +760,11 @@ $a->strings["No profile"] = "Kein Profil";
|
|||
$a->strings["Remove My Account"] = "Konto löschen";
|
||||
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
|
||||
$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
|
||||
$a->strings["Nothing new here"] = "Keine Neuigkeiten.";
|
||||
$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
|
||||
$a->strings["New Message"] = "Neue Nachricht";
|
||||
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
|
||||
$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
|
||||
$a->strings["Message deleted."] = "Nachricht gelöscht.";
|
||||
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
|
||||
$a->strings["No messages."] = "Keine Nachrichten.";
|
||||
|
@ -1048,6 +1063,7 @@ $a->strings["No entries."] = "Keine Einträge";
|
|||
$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
|
||||
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:";
|
||||
$a->strings["Source input: "] = "Originaltext:";
|
||||
$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
|
||||
$a->strings["bb2html: "] = "bb2html: ";
|
||||
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
|
||||
$a->strings["bb2md: "] = "bb2md: ";
|
||||
|
@ -1056,6 +1072,7 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
|
|||
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
|
||||
$a->strings["Source input (Diaspora format): "] = "Texteingabe (Diaspora Format): ";
|
||||
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
|
||||
$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
|
||||
$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
|
||||
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
|
||||
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
|
||||
|
@ -1068,8 +1085,10 @@ $a->strings["Status:"] = "Status:";
|
|||
$a->strings["Homepage:"] = "Homepage:";
|
||||
$a->strings["About:"] = "Über:";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
|
||||
$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
|
||||
$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
|
||||
$a->strings["Please join us on Friendica"] = "Bitte trete bei uns auf Friendica bei";
|
||||
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
|
||||
$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
|
||||
$a->strings["%d message sent."] = array(
|
||||
0 => "%d Nachricht gesendet.",
|
||||
|
@ -1616,6 +1635,8 @@ $a->strings["Shortening method that optimizes the tweet"] = "Kürzungsverfahren,
|
|||
$a->strings["Send linked #-tags and @-names to Twitter"] = "Sende verlinkte #-Tags und @-Namen nach Twitter";
|
||||
$a->strings["Consumer key"] = "Consumer Key";
|
||||
$a->strings["Consumer secret"] = "Consumer Secret";
|
||||
$a->strings["Name of the Twitter Application"] = "Name der Twitter Anwendung";
|
||||
$a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "Setze dies um eine Spiegelung von ~friendica zu ~friendica zu vermeiden";
|
||||
$a->strings["IRC Settings"] = "IRC Einstellungen";
|
||||
$a->strings["Channel(s) to auto connect (comma separated)"] = "mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)";
|
||||
$a->strings["Popular Channels (comma separated)"] = "Beliebte Kanäle (mit Komma getrennt)";
|
||||
|
@ -1893,7 +1914,8 @@ $a->strings["Profiles"] = "Profile";
|
|||
$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
|
||||
$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
|
||||
$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
|
||||
$a->strings["Nothing new here"] = "Keine Neuigkeiten.";
|
||||
$a->strings["Navigation"] = "Navigation";
|
||||
$a->strings["Site map"] = "Sitemap";
|
||||
$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
|
||||
$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
|
||||
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
|
||||
|
@ -1931,7 +1953,7 @@ $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
|
|||
$a->strings["%s's birthday"] = "%ss Geburtstag";
|
||||
$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
|
||||
$a->strings["Image/photo"] = "Bild/Foto";
|
||||
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>:</span>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Eintrag</a>:</span>";
|
||||
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>";
|
||||
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
|
||||
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
|
||||
$a->strings["General Features"] = "Allgemeine Features";
|
||||
|
@ -2026,6 +2048,7 @@ $a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinfo
|
|||
$a->strings["following"] = "folgen";
|
||||
$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
|
||||
$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
|
||||
$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
|
||||
$a->strings["Archives"] = "Archiv";
|
||||
$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
|
||||
$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
|
||||
|
@ -2055,7 +2078,7 @@ $a->strings["View Photos"] = "Bilder anschauen";
|
|||
$a->strings["Network Posts"] = "Netzwerkbeiträge";
|
||||
$a->strings["Edit Contact"] = "Kontakt bearbeiten";
|
||||
$a->strings["Send PM"] = "Private Nachricht senden";
|
||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s hat %2\$s angestupst";
|
||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
|
||||
$a->strings["post/item"] = "Nachricht/Beitrag";
|
||||
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
|
||||
$a->strings["Categories:"] = "Kategorien";
|
||||
|
@ -2065,9 +2088,8 @@ $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
|
|||
$a->strings["Follow Thread"] = "Folge der Unterhaltung";
|
||||
$a->strings["%s likes this."] = "%s mag das.";
|
||||
$a->strings["%s doesn't like this."] = "%s mag das nicht.";
|
||||
$a->strings["like this"] = "mögen dies";
|
||||
$a->strings["don't like this"] = "mögen dies nicht";
|
||||
$a->strings["people"] = "Leute";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d Personen</span> mögen das";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d Personen</span> mögen das nicht";
|
||||
$a->strings["and"] = "und";
|
||||
$a->strings[", and %d other people"] = " und %d andere";
|
||||
$a->strings["%s like this."] = "%s mögen das.";
|
||||
|
@ -2078,7 +2100,11 @@ $a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einf
|
|||
$a->strings["Tag term:"] = "Tag:";
|
||||
$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?";
|
||||
$a->strings["Delete item(s)?"] = "Einträge löschen?";
|
||||
$a->strings["Post to Email"] = "An E-Mail senden";
|
||||
$a->strings["permissions"] = "Zugriffsrechte";
|
||||
$a->strings["Post to Groups"] = "Poste an Gruppe";
|
||||
$a->strings["Post to Contacts"] = "Poste an Kontakte";
|
||||
$a->strings["Private post"] = "Privater Beitrag";
|
||||
$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
|
||||
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
|
||||
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
$.get(
|
||||
'$baseurl/events/?id='+eventid,
|
||||
function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({html:data});
|
||||
}
|
||||
);
|
||||
}
|
||||
|
@ -94,9 +94,9 @@
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
content_css: "$baseurl/view/custom_tinymce.css",
|
||||
theme_advanced_path : false,
|
||||
setup : function(ed) {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
<base href="$baseurl/" />
|
||||
<meta name="generator" content="$generator" />
|
||||
<link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/tiptip/tipTip.css" type="text/css" media="screen" />
|
||||
{#<!--<link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox.css" type="text/css" media="screen" />-->#}
|
||||
<link rel="stylesheet" href="$baseurl/library/colorbox/colorbox.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="$stylesheet" media="all" />
|
||||
|
@ -24,8 +24,8 @@
|
|||
<script type="text/javascript" src="$baseurl/js/jquery.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/jquery.textinputs.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/fk.autocomplete.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/tiptip/jquery.tipTip.minified.js"></script>
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox.pack.js"></script>-->#}
|
||||
<script type="text/javascript" src="$baseurl/library/colorbox/jquery.colorbox-min.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/acl.js" ></script>
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
<form action="invite" method="post" id="invite-form" >
|
||||
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
|
||||
<div id="invite-wrapper">
|
||||
|
||||
<h3>$invite</h3>
|
||||
|
|
4107
view/it/messages.po
|
@ -13,9 +13,9 @@ function initEditor(cb){
|
|||
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
|
||||
$("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
|
||||
editor = true;
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
$(".jothidden").show();
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
@ -38,9 +38,9 @@ function initEditor(cb){
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
convert_urls: false,
|
||||
content_css: "$baseurl/view/custom_tinymce.css",
|
||||
theme_advanced_path : false,
|
||||
|
@ -105,9 +105,9 @@ function initEditor(cb){
|
|||
});
|
||||
editor = true;
|
||||
// setup acl popup
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
} else {
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
@ -274,7 +274,7 @@ function enableOnUser(){
|
|||
var bordercolor = $("input").css("border-color");
|
||||
|
||||
$.get('filer/', function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({html:data});
|
||||
$("#id_term").keypress(function(){
|
||||
$(this).css("border-color",bordercolor);
|
||||
})
|
||||
|
@ -292,7 +292,7 @@ function enableOnUser(){
|
|||
// if(timer) clearTimeout(timer);
|
||||
// timer = setTimeout(NavUpdate,3000);
|
||||
liking = 1;
|
||||
$.fancybox.close();
|
||||
$.colorbox.close();
|
||||
} else {
|
||||
$("#id_term").css("border-color","#FF0000");
|
||||
}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$id">
|
||||
<a href="#" class="icon like" title="$likethis" onclick="dolike($id,'like'); return false"></a>
|
||||
{{ if $nolike }}
|
||||
<a href="#" class="icon dislike" title="$nolike" onclick="dolike($id,'dislike'); return false"></a>
|
||||
{{ endif }}
|
||||
<img id="like-rotator-$id" class="like-rotator" src="images/rotator.gif" alt="$wait" title="$wait" style="display: none;" />
|
||||
</div>
|
||||
|
|
17
view/manage.tpl
Normal file
|
@ -0,0 +1,17 @@
|
|||
<h3>$title</h3>
|
||||
<div id="identity-manage-desc">$desc</div>
|
||||
<div id="identity-manage-choose">$choose</div>
|
||||
<div id="identity-selector-wrapper">
|
||||
<form action="manage" method="post" >
|
||||
<select name="identity" size="4" onchange="this.form.submit();" >
|
||||
|
||||
{{ for $identities as $id }}
|
||||
<option $id.selected value="$id.uid">$id.username ($id.nickname)</option>
|
||||
{{ endfor }}
|
||||
|
||||
</select>
|
||||
<div id="identity-select-break"></div>
|
||||
|
||||
{#<!--<input id="identity-submit" type="submit" name="submit" value="$submit" />-->#}
|
||||
</div></form>
|
||||
|
|
@ -21,9 +21,9 @@ if(plaintext != 'none') {
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
convert_urls: false,
|
||||
content_css: "$baseurl/view/custom_tinymce.css",
|
||||
//Character count
|
||||
|
|
103
view/navigation.tpl
Normal file
|
@ -0,0 +1,103 @@
|
|||
{#
|
||||
# LOGIN/REGISTER
|
||||
#}
|
||||
<center>
|
||||
{# Use nested if's since the Friendica template engine doesn't support AND or OR in if statements #}
|
||||
{{ if $nav.login }}
|
||||
<div id="navigation-login-wrapper" >
|
||||
{{ else }}
|
||||
{{ if $nav.register }}
|
||||
<div id="navigation-login-wrapper" >
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
{{ if $nav.login }}<a id="navigation-login-link" class="navigation-link $nav.login.2" href="$nav.login.0" title="$nav.login.3" >$nav.login.1</a><br/> {{ endif }}
|
||||
{{ if $nav.register }}<a id="navigation-register-link" class="navigation-link $nav.register.2 $sel.register" href="$nav.register.0" title="$nav.register.3" >$nav.register.1</a><br/>{{ endif }}
|
||||
{{ if $nav.login }}
|
||||
</div>
|
||||
{{ else }}
|
||||
{{ if $nav.register }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
{#
|
||||
# NETWORK/HOME
|
||||
#}
|
||||
{{ if $nav.network }}
|
||||
<div id="navigation-network-wrapper" >
|
||||
{{ else }}
|
||||
{{ if $nav.home }}
|
||||
<div id="navigation-network-wrapper" >
|
||||
{{ else }}
|
||||
{{ if $nav.community }}
|
||||
<div id="navigation-network-wrapper" >
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
{{ if $nav.network }}
|
||||
<a id="navigation-network-link" class="navigation-link navigation-commlink $nav.network.2 $sel.network" href="$nav.network.0" title="$nav.network.3" >$nav.network.1</a><br/>
|
||||
<a class="navigation-link navigation-commlink" href="$nav.net_reset.0" title="$nav.net_reset.3">$nav.net_reset.1</a><br/>
|
||||
{{ endif }}
|
||||
{{ if $nav.home }}
|
||||
<a id="navigation-home-link" class="navigation-link navigation-commlink $nav.home.2 $sel.home" href="$nav.home.0" title="$nav.home.3" >$nav.home.1</a><br/>
|
||||
{{ endif }}
|
||||
{{ if $nav.community }}
|
||||
<a id="navigation-community-link" class="navigation-link navigation-commlink $nav.community.2 $sel.community" href="$nav.community.0" title="$nav.community.3" >$nav.community.1</a><br/>
|
||||
{{ endif }}
|
||||
{{ if $nav.network }}
|
||||
</div>
|
||||
{{ else }}
|
||||
{{ if $nav.home }}
|
||||
</div>
|
||||
{{ else }}
|
||||
{{ if $nav.community }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
{{ endif }}
|
||||
|
||||
{#
|
||||
# PRIVATE MESSAGES
|
||||
#}
|
||||
{{ if $nav.messages }}
|
||||
<div id="navigation-messages-wrapper">
|
||||
<a id="navigation-messages-link" class="navigation-link navigation-commlink $nav.messages.2 $sel.messages" href="$nav.messages.0" title="$nav.messages.3" >$nav.messages.1</a><br/>
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
|
||||
{#
|
||||
# CONTACTS
|
||||
#}
|
||||
<div id="navigation-contacts-wrapper">
|
||||
{{ if $nav.contacts }}<a id="navigation-contacts-link" class="navigation-link $nav.contacts.2" href="$nav.contacts.0" title="$nav.contacts.3" >$nav.contacts.1</a><br/>{{ endif }}
|
||||
<a id="navigation-directory-link" class="navigation-link $nav.directory.2" href="$nav.directory.0" title="$nav.directory.3" >$nav.directory.1</a><br/>
|
||||
{{ if $nav.introductions }}
|
||||
<a id="navigation-notify-link" class="navigation-link navigation-commlink $nav.introductions.2 $sel.introductions" href="$nav.introductions.0" title="$nav.introductions.3" >$nav.introductions.1</a><br/>
|
||||
{{ endif }}
|
||||
</div>
|
||||
|
||||
{#
|
||||
# NOTIFICATIONS
|
||||
#}
|
||||
{{ if $nav.notifications }}
|
||||
<div id="navigation-notifications-wrapper">
|
||||
<a id="navigation-notifications-link" class="navigation-link navigation-commlink" href="$nav.notifications.0" rel="#navigation-notifications-menu" title="$nav.notifications.1">$nav.notifications.1</a><br/>
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
{#
|
||||
# MISCELLANEOUS
|
||||
#}
|
||||
<div id="navigation-misc-wrapper">
|
||||
{{ if $nav.settings }}<a id="navigation-settings-link" class="navigation-link $nav.settings.2" href="$nav.settings.0" title="$nav.settings.3">$nav.settings.1</a><br/>{{ endif }}
|
||||
{{ if $nav.manage }}<a id="navigation-manage-link" class="navigation-link navigation-commlink $nav.manage.2 $sel.manage" href="$nav.manage.0" title="$nav.manage.3">$nav.manage.1</a><br/>{{ endif }}
|
||||
{{ if $nav.profiles }}<a id="navigation-profiles-link" class="navigation-link $nav.profiles.2" href="$nav.profiles.0" title="$nav.profiles.3" >$nav.profiles.1</a><br/>{{ endif }}
|
||||
{{ if $nav.admin }}<a id="navigation-admin-link" class="navigation-link $nav.admin.2" href="$nav.admin.0" title="$nav.admin.3" >$nav.admin.1</a><br/>{{ endif }}
|
||||
<a id="navigation-search-link" class="navigation-link $nav.search.2" href="$nav.search.0" title="$nav.search.3" >$nav.search.1</a><br/>
|
||||
{{ if $nav.apps }}<a id="navigation-apps-link" class="navigation-link $nav.apps.2" href="$nav.apps.0" title="$nav.apps.3" >$nav.apps.1</a><br/>{{ endif }}
|
||||
{{ if $nav.help }} <a id="navigation-help-link" class="navigation-link $nav.help.2" target="friendica-help" href="$nav.help.0" title="$nav.help.3" >$nav.help.1</a><br/>{{ endif }}
|
||||
</div>
|
||||
|
||||
{{ if $nav.logout }}<a id="navigation-logout-link" class="navigation-link $nav.logout.2" href="$nav.logout.0" title="$nav.logout.3" >$nav.logout.1</a><br/>{{ endif }}
|
||||
</center>
|
1
view/photos_default_uploader_box.tpl
Normal file
|
@ -0,0 +1 @@
|
|||
<input id="photos-upload-choose" type="file" name="userfile" />
|
3
view/photos_default_uploader_submit.tpl
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="photos-upload-submit-wrapper" >
|
||||
<input type="submit" name="submit" value="$submit" id="photos-upload-submit" />
|
||||
</div>
|
|
@ -39,9 +39,10 @@
|
|||
|
||||
<div id="photos-upload-spacer"></div>
|
||||
|
||||
$uploader
|
||||
$alt_uploader
|
||||
|
||||
$default
|
||||
$default_upload_box
|
||||
$default_upload_submit
|
||||
|
||||
<div class="photos-upload-end" ></div>
|
||||
</form>
|
||||
|
|
1478
view/pl/messages.po
|
@ -11,7 +11,7 @@ $a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu
|
|||
$a->strings["Permission denied."] = "Brak uprawnień.";
|
||||
$a->strings["Contact not found."] = "Kontakt nie znaleziony";
|
||||
$a->strings["Repair Contact Settings"] = "Napraw ustawienia kontaktów";
|
||||
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
|
||||
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong> UWAGA: To jest wysoce zaawansowane</strong> i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać.";
|
||||
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> przycisku 'powrót' na swojej przeglądarce.";
|
||||
$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów";
|
||||
$a->strings["Name"] = "Imię";
|
||||
|
@ -53,13 +53,14 @@ $a->strings["Description:"] = "Opis:";
|
|||
$a->strings["Location:"] = "Lokalizacja";
|
||||
$a->strings["Title:"] = "Tytuł:";
|
||||
$a->strings["Share this event"] = "Udostępnij te wydarzenie";
|
||||
$a->strings["System down for maintenance"] = "";
|
||||
$a->strings["Cancel"] = "Anuluj";
|
||||
$a->strings["Tag removed"] = "Tag usunięty";
|
||||
$a->strings["Remove Item Tag"] = "Usuń pozycję Tag";
|
||||
$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia";
|
||||
$a->strings["Remove"] = "Usuń";
|
||||
$a->strings["%1\$s welcomes %2\$s"] = "";
|
||||
$a->strings["Authorize application connection"] = "";
|
||||
$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji";
|
||||
$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:";
|
||||
$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować.";
|
||||
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?";
|
||||
|
@ -75,7 +76,7 @@ $a->strings["Album not found."] = "Album nie znaleziony";
|
|||
$a->strings["Delete Album"] = "Usuń album";
|
||||
$a->strings["Delete Photo"] = "Usuń zdjęcie";
|
||||
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
|
||||
$a->strings["a photo"] = "";
|
||||
$a->strings["a photo"] = "zdjęcie";
|
||||
$a->strings["Image exceeds size limit of "] = "obrazek przekracza limit rozmiaru";
|
||||
$a->strings["Image file is empty."] = "Plik obrazka jest pusty.";
|
||||
$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się.";
|
||||
|
@ -87,7 +88,7 @@ $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
|
|||
$a->strings["Upload Photos"] = "Prześlij zdjęcia";
|
||||
$a->strings["New album name: "] = "Nazwa nowego albumu:";
|
||||
$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:";
|
||||
$a->strings["Do not show a status post for this upload"] = "";
|
||||
$a->strings["Do not show a status post for this upload"] = "Nie pokazuj postów statusu dla tego wysłania";
|
||||
$a->strings["Permissions"] = "Uprawnienia";
|
||||
$a->strings["Edit Album"] = "Edytuj album";
|
||||
$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze";
|
||||
|
@ -137,7 +138,7 @@ $a->strings["upload photo"] = "dodaj zdjęcie";
|
|||
$a->strings["Attach file"] = "Przyłącz plik";
|
||||
$a->strings["attach file"] = "załącz plik";
|
||||
$a->strings["Insert web link"] = "Wstaw link";
|
||||
$a->strings["web link"] = "";
|
||||
$a->strings["web link"] = "Adres www";
|
||||
$a->strings["Insert video link"] = "Wstaw link wideo";
|
||||
$a->strings["video link"] = "link do filmu";
|
||||
$a->strings["Insert audio link"] = "Wstaw link audio";
|
||||
|
@ -194,7 +195,7 @@ $a->strings["Does %s know you?"] = "Czy %s Cię zna?";
|
|||
$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:";
|
||||
$a->strings["Friendica"] = "Friendica";
|
||||
$a->strings["StatusNet/Federated Social Web"] = "";
|
||||
$a->strings["Diaspora"] = "";
|
||||
$a->strings["Diaspora"] = "Diaspora";
|
||||
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "";
|
||||
$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:";
|
||||
$a->strings["Submit Request"] = "Wyślij zgłoszenie";
|
||||
|
@ -234,15 +235,15 @@ $a->strings["Could not find a command line version of PHP in the web server PATH
|
|||
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "";
|
||||
$a->strings["PHP executable path"] = "";
|
||||
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
|
||||
$a->strings["Command line PHP"] = "";
|
||||
$a->strings["Command line PHP"] = "Linia komend PHP";
|
||||
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\".";
|
||||
$a->strings["This is required for message delivery to work."] = "To jest wymagane do dostarczenia wiadomości do pracy.";
|
||||
$a->strings["PHP register_argc_argv"] = "";
|
||||
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd : funkcja systemu \"openssl_pkey_new\" nie jest w stanie wygenerować klucza szyfrującego .";
|
||||
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\".";
|
||||
$a->strings["Generate encryption keys"] = "";
|
||||
$a->strings["libCurl PHP module"] = "";
|
||||
$a->strings["GD graphics PHP module"] = "";
|
||||
$a->strings["Generate encryption keys"] = "Generuj klucz kodowania";
|
||||
$a->strings["libCurl PHP module"] = "Moduł libCurl PHP";
|
||||
$a->strings["GD graphics PHP module"] = "Moduł PHP-GD";
|
||||
$a->strings["OpenSSL PHP module"] = "";
|
||||
$a->strings["mysqli PHP module"] = "";
|
||||
$a->strings["mb_string PHP module"] = "";
|
||||
|
@ -267,12 +268,12 @@ $a->strings["Url rewrite in .htaccess is not working. Check your server configur
|
|||
$a->strings["Url rewrite is working"] = "";
|
||||
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera.";
|
||||
$a->strings["Errors encountered creating database tables."] = "Zostały napotkane błędy przy tworzeniu tabeli bazy danych.";
|
||||
$a->strings["<h1>What next</h1>"] = "";
|
||||
$a->strings["<h1>What next</h1>"] = "<h1>Co dalej</h1>";
|
||||
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
|
||||
$a->strings["l F d, Y \\@ g:i A"] = "";
|
||||
$a->strings["Time Conversion"] = "Zmiana czasu";
|
||||
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
|
||||
$a->strings["UTC time: %s"] = "";
|
||||
$a->strings["UTC time: %s"] = "Czas UTC %s";
|
||||
$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s";
|
||||
$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s";
|
||||
$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:";
|
||||
|
@ -335,7 +336,7 @@ $a->strings["System"] = "System";
|
|||
$a->strings["Network"] = "Sieć";
|
||||
$a->strings["Personal"] = "Osobiste";
|
||||
$a->strings["Home"] = "Dom";
|
||||
$a->strings["Introductions"] = "";
|
||||
$a->strings["Introductions"] = "Wstępy";
|
||||
$a->strings["Messages"] = "Wiadomości";
|
||||
$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania";
|
||||
$a->strings["Hide Ignored Requests"] = "Ukryj ignorowane żądania";
|
||||
|
@ -388,7 +389,7 @@ $a->strings["Never"] = "Nigdy";
|
|||
$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)";
|
||||
$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)";
|
||||
$a->strings["Suggest friends"] = "Osoby, które możesz znać";
|
||||
$a->strings["Network type: %s"] = "";
|
||||
$a->strings["Network type: %s"] = "Typ sieci: %s";
|
||||
$a->strings["%d contact in common"] = array(
|
||||
0 => "",
|
||||
1 => "",
|
||||
|
@ -414,11 +415,11 @@ $a->strings["Edit contact notes"] = "Edytuj notatki kontaktu";
|
|||
$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]";
|
||||
$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt";
|
||||
$a->strings["Ignore contact"] = "Ignoruj kontakt";
|
||||
$a->strings["Repair URL settings"] = "";
|
||||
$a->strings["Repair URL settings"] = "Napraw ustawienia adresu";
|
||||
$a->strings["View conversations"] = "Zobacz rozmowę";
|
||||
$a->strings["Delete contact"] = "Usuń kontakt";
|
||||
$a->strings["Last update:"] = "Ostatnia aktualizacja:";
|
||||
$a->strings["Update public posts"] = "";
|
||||
$a->strings["Update public posts"] = "Zaktualizuj publiczne posty";
|
||||
$a->strings["Update now"] = "Aktualizuj teraz";
|
||||
$a->strings["Currently blocked"] = "Obecnie zablokowany";
|
||||
$a->strings["Currently ignored"] = "Obecnie zignorowany";
|
||||
|
@ -449,7 +450,6 @@ $a->strings["Find"] = "Znajdź";
|
|||
$a->strings["No valid account found."] = "Nie znaleziono ważnego konta.";
|
||||
$a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres email.";
|
||||
$a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s";
|
||||
$a->strings["Administrator"] = "Administrator";
|
||||
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się.";
|
||||
$a->strings["Password Reset"] = "Zresetuj hasło";
|
||||
$a->strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane na twoje życzenie.";
|
||||
|
@ -457,6 +457,7 @@ $a->strings["Your new password is"] = "Twoje nowe hasło to";
|
|||
$a->strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj swoje nowe hasło - i wtedy";
|
||||
$a->strings["click here to login"] = "Kliknij tutaj aby zalogować";
|
||||
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu.";
|
||||
$a->strings["Your password has been changed at %s"] = "";
|
||||
$a->strings["Forgot your Password?"] = "Zapomniałeś hasła?";
|
||||
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji.";
|
||||
$a->strings["Nickname or Email: "] = "Pseudonim lub Email:";
|
||||
|
@ -485,18 +486,18 @@ $a->strings["Redirect"] = "Przekierowanie";
|
|||
$a->strings["Icon url"] = "Adres ikony";
|
||||
$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji.";
|
||||
$a->strings["Connected Apps"] = "Powiązane aplikacje";
|
||||
$a->strings["Client key starts with"] = "";
|
||||
$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od";
|
||||
$a->strings["No name"] = "Bez nazwy";
|
||||
$a->strings["Remove authorization"] = "Odwołaj upoważnienie";
|
||||
$a->strings["No Plugin settings configured"] = "Ustawienia wtyczki nieskonfigurowane";
|
||||
$a->strings["Plugin Settings"] = "Ustawienia wtyczki";
|
||||
$a->strings["Off"] = "";
|
||||
$a->strings["On"] = "";
|
||||
$a->strings["Off"] = "Wyłącz";
|
||||
$a->strings["On"] = "Włącz";
|
||||
$a->strings["Additional Features"] = "";
|
||||
$a->strings["Built-in support for %s connectivity is %s"] = "";
|
||||
$a->strings["enabled"] = "włączony";
|
||||
$a->strings["disabled"] = "wyłączony";
|
||||
$a->strings["StatusNet"] = "";
|
||||
$a->strings["StatusNet"] = "StatusNet";
|
||||
$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie";
|
||||
$a->strings["Connector Settings"] = "Ustawienia konektora";
|
||||
$a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej";
|
||||
|
@ -593,7 +594,7 @@ $a->strings["Toggle between different identities or community/group pages which
|
|||
$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:";
|
||||
$a->strings["Search Results For:"] = "Szukaj wyników dla:";
|
||||
$a->strings["Remove term"] = "Usuń wpis";
|
||||
$a->strings["Saved Searches"] = "";
|
||||
$a->strings["Saved Searches"] = "Zapisane wyszukiwania";
|
||||
$a->strings["add"] = "dodaj";
|
||||
$a->strings["Commented Order"] = "Porządek wg komentarzy";
|
||||
$a->strings["Sort by Comment Date"] = "Sortuj po dacie komentarza";
|
||||
|
@ -607,9 +608,9 @@ $a->strings["Interesting Links"] = "Interesujące linki";
|
|||
$a->strings["Starred"] = "";
|
||||
$a->strings["Favourite Posts"] = "Ulubione posty";
|
||||
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
|
||||
0 => "",
|
||||
1 => "",
|
||||
2 => "",
|
||||
0 => "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci.",
|
||||
1 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.",
|
||||
2 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.",
|
||||
);
|
||||
$a->strings["Private messages to this group are at risk of public disclosure."] = "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia";
|
||||
$a->strings["Contact: "] = "Kontakt: ";
|
||||
|
@ -619,7 +620,7 @@ $a->strings["Personal Notes"] = "Osobiste notatki";
|
|||
$a->strings["Save"] = "Zapisz";
|
||||
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro.";
|
||||
$a->strings["Import"] = "";
|
||||
$a->strings["Move account"] = "";
|
||||
$a->strings["Move account"] = "Przenieś konto";
|
||||
$a->strings["You can import an account from another Friendica server."] = "";
|
||||
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "";
|
||||
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "";
|
||||
|
@ -631,7 +632,7 @@ $a->strings["Unable to check your home location."] = "";
|
|||
$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana";
|
||||
$a->strings["Message collection failure."] = "";
|
||||
$a->strings["Message sent."] = "Wysłano.";
|
||||
$a->strings["No recipient."] = "";
|
||||
$a->strings["No recipient."] = "Brak odbiorcy.";
|
||||
$a->strings["Please enter a link URL:"] = "Proszę wpisać adres URL:";
|
||||
$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość";
|
||||
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
|
||||
|
@ -789,7 +790,7 @@ $a->strings["Soapbox Account"] = "";
|
|||
$a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy";
|
||||
$a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta";
|
||||
$a->strings["Blog Account"] = "";
|
||||
$a->strings["Private Forum"] = "";
|
||||
$a->strings["Private Forum"] = "Forum Prywatne";
|
||||
$a->strings["Message queues"] = "";
|
||||
$a->strings["Administration"] = "Administracja";
|
||||
$a->strings["Summary"] = "Skrót";
|
||||
|
@ -850,13 +851,13 @@ $a->strings["Block multiple registrations"] = "";
|
|||
$a->strings["Disallow users to register additional accounts for use as pages."] = "";
|
||||
$a->strings["OpenID support"] = "Wsparcie OpenID";
|
||||
$a->strings["OpenID support for registration and logins."] = "";
|
||||
$a->strings["Fullname check"] = "";
|
||||
$a->strings["Fullname check"] = "Sprawdzanie pełnej nazwy";
|
||||
$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
|
||||
$a->strings["UTF-8 Regular expressions"] = "";
|
||||
$a->strings["Use PHP UTF8 regular expressions"] = "";
|
||||
$a->strings["Show Community Page"] = "Pokaż stronę społeczności";
|
||||
$a->strings["Display a Community page showing all recent public postings on this site."] = "";
|
||||
$a->strings["Enable OStatus support"] = "";
|
||||
$a->strings["Enable OStatus support"] = "Włącz wsparcie OStatus";
|
||||
$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
|
||||
$a->strings["Enable Diaspora support"] = "";
|
||||
$a->strings["Provide built-in Diaspora network compatibility."] = "";
|
||||
|
@ -865,7 +866,7 @@ $a->strings["All contacts must use Friendica protocols. All other built-in commu
|
|||
$a->strings["Verify SSL"] = "Weryfikacja SSL";
|
||||
$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
|
||||
$a->strings["Proxy user"] = "Użytkownik proxy";
|
||||
$a->strings["Proxy URL"] = "";
|
||||
$a->strings["Proxy URL"] = "URL Proxy";
|
||||
$a->strings["Network timeout"] = "";
|
||||
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
|
||||
$a->strings["Delivery interval"] = "";
|
||||
|
@ -931,10 +932,10 @@ $a->strings["[Experimental]"] = "[Eksperymentalne]";
|
|||
$a->strings["[Unsupported]"] = "[Niewspieralne]";
|
||||
$a->strings["Log settings updated."] = "";
|
||||
$a->strings["Clear"] = "Wyczyść";
|
||||
$a->strings["Debugging"] = "";
|
||||
$a->strings["Log file"] = "";
|
||||
$a->strings["Debugging"] = "Naprawianie";
|
||||
$a->strings["Log file"] = "Plik logów";
|
||||
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
|
||||
$a->strings["Log level"] = "";
|
||||
$a->strings["Log level"] = "Poziom logów";
|
||||
$a->strings["Close"] = "Zamknij";
|
||||
$a->strings["FTP Host"] = "Założyciel FTP";
|
||||
$a->strings["FTP Path"] = "Ścieżka FTP";
|
||||
|
@ -945,15 +946,15 @@ $a->strings["Access to this profile has been restricted."] = "Ograniczony dostę
|
|||
$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników";
|
||||
$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym";
|
||||
$a->strings["{0} sent you a message"] = "{0} wysyła Ci wiadomość";
|
||||
$a->strings["{0} requested registration"] = "";
|
||||
$a->strings["{0} requested registration"] = "{0} żądana rejestracja";
|
||||
$a->strings["{0} commented %s's post"] = "{0} skomentował %s wpis";
|
||||
$a->strings["{0} liked %s's post"] = "{0} polubił wpis %s";
|
||||
$a->strings["{0} disliked %s's post"] = "{0} przestał lubić post %s";
|
||||
$a->strings["{0} is now friends with %s"] = "{0} jest teraz znajomym %s";
|
||||
$a->strings["{0} posted"] = "";
|
||||
$a->strings["{0} tagged %s's post with #%s"] = "";
|
||||
$a->strings["{0} posted"] = "{0} utworzony";
|
||||
$a->strings["{0} tagged %s's post with #%s"] = "{0} zaznaczony %s'go post z #%s";
|
||||
$a->strings["{0} mentioned you in a post"] = "{0} wspomniał Cię w swoim wpisie";
|
||||
$a->strings["Contacts who are not members of a group"] = "";
|
||||
$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy";
|
||||
$a->strings["OpenID protocol error. No ID returned."] = "";
|
||||
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "";
|
||||
$a->strings["Login failed."] = "Niepowodzenie logowania";
|
||||
|
@ -967,12 +968,16 @@ $a->strings["Applications"] = "Aplikacje";
|
|||
$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji.";
|
||||
$a->strings["Search"] = "Szukaj";
|
||||
$a->strings["Profile not found."] = "Nie znaleziono profilu.";
|
||||
$a->strings["Profile deleted."] = "Konto usunięte.";
|
||||
$a->strings["Profile-"] = "Profil-";
|
||||
$a->strings["New profile created."] = "Utworzono nowy profil.";
|
||||
$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu ";
|
||||
$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana";
|
||||
$a->strings["Marital Status"] = "";
|
||||
$a->strings["Romantic Partner"] = "";
|
||||
$a->strings["Likes"] = "";
|
||||
$a->strings["Dislikes"] = "";
|
||||
$a->strings["Work/Employment"] = "";
|
||||
$a->strings["Work/Employment"] = "Praca/Zatrudnienie";
|
||||
$a->strings["Religion"] = "Religia";
|
||||
$a->strings["Political Views"] = "Poglądy polityczne";
|
||||
$a->strings["Gender"] = "Płeć";
|
||||
|
@ -985,15 +990,11 @@ $a->strings["Profile updated."] = "Konto zaktualizowane.";
|
|||
$a->strings[" and "] = " i ";
|
||||
$a->strings["public profile"] = "profil publiczny";
|
||||
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "";
|
||||
$a->strings[" - Visit %1\$s's %2\$s"] = "";
|
||||
$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedźa %1\$s's %2\$s";
|
||||
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
|
||||
$a->strings["Profile deleted."] = "Konto usunięte.";
|
||||
$a->strings["Profile-"] = "Profil-";
|
||||
$a->strings["New profile created."] = "Utworzono nowy profil.";
|
||||
$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu ";
|
||||
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?";
|
||||
$a->strings["Edit Profile Details"] = "Edytuj profil.";
|
||||
$a->strings["Change Profile Photo"] = "";
|
||||
$a->strings["Change Profile Photo"] = "Zmień profilowe zdjęcie";
|
||||
$a->strings["View this profile"] = "Zobacz ten profil";
|
||||
$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia";
|
||||
$a->strings["Clone this profile"] = "Sklonuj ten profil";
|
||||
|
@ -1021,7 +1022,7 @@ $a->strings["Public Keywords:"] = "Publiczne słowa kluczowe :";
|
|||
$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe :";
|
||||
$a->strings["Likes:"] = "Lubi:";
|
||||
$a->strings["Dislikes:"] = "";
|
||||
$a->strings["Example: fishing photography software"] = "";
|
||||
$a->strings["Example: fishing photography software"] = "Przykład: kończenie oprogramowania fotografii";
|
||||
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)";
|
||||
$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)";
|
||||
$a->strings["Tell us about yourself..."] = "Napisz o sobie...";
|
||||
|
@ -1044,7 +1045,7 @@ $a->strings["visible to everybody"] = "widoczne dla wszystkich";
|
|||
$a->strings["Edit visibility"] = "Edytuj widoczność";
|
||||
$a->strings["Save to Folder:"] = "Zapisz w folderze:";
|
||||
$a->strings["- select -"] = "- wybierz -";
|
||||
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
|
||||
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s zaznaczył %2\$s'go %3\$s przy użyciu %4\$s";
|
||||
$a->strings["No potential page delegates located."] = "";
|
||||
$a->strings["Delegate Page Management"] = "";
|
||||
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
|
||||
|
@ -1056,6 +1057,7 @@ $a->strings["No entries."] = "Brak wpisów.";
|
|||
$a->strings["Source (bbcode) text:"] = "";
|
||||
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
|
||||
$a->strings["Source input: "] = "";
|
||||
$a->strings["bb2html (raw HTML): "] = "";
|
||||
$a->strings["bb2html: "] = "";
|
||||
$a->strings["bb2html2bb: "] = "";
|
||||
$a->strings["bb2md: "] = "";
|
||||
|
@ -1124,7 +1126,7 @@ $a->strings["Facebook API key is missing."] = "Brakuje klucza API z facebooka.";
|
|||
$a->strings["Facebook Connect"] = "Połącz konto z kontem Facebook";
|
||||
$a->strings["Install Facebook connector for this account."] = "Zainstaluj wtyczkę Facebook ";
|
||||
$a->strings["Remove Facebook connector"] = "Usuń wtyczkę Facebook";
|
||||
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "";
|
||||
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Ponowna autoryzacja [Jest wymagana jeśli twoje hasło do Facebooka jest zmienione]";
|
||||
$a->strings["Post to Facebook by default"] = "Domyślnie opublikuj na stronie Facebook";
|
||||
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
|
||||
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
|
||||
|
@ -1137,13 +1139,14 @@ $a->strings["Do not import your Facebook profile wall conversations"] = "";
|
|||
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
|
||||
$a->strings["Comma separated applications to ignore"] = "";
|
||||
$a->strings["Problems with Facebook Real-Time Updates"] = "Problemy z aktualizacjami w czasie rzeczywistym Facebook'a";
|
||||
$a->strings["Administrator"] = "Administrator";
|
||||
$a->strings["Facebook Connector Settings"] = "Ustawienia połączenia z Facebook";
|
||||
$a->strings["Facebook API Key"] = "Facebook API Key";
|
||||
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
|
||||
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
|
||||
$a->strings["The given API Key seems to work correctly."] = "";
|
||||
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
|
||||
$a->strings["App-ID / API-Key"] = "";
|
||||
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
|
||||
$a->strings["Application secret"] = "";
|
||||
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
|
||||
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
|
||||
|
@ -1158,7 +1161,7 @@ $a->strings["Post to Facebook cancelled because of multi-network access permissi
|
|||
$a->strings["View on Friendica"] = "Zobacz na Friendice";
|
||||
$a->strings["Facebook post failed. Queued for retry."] = "";
|
||||
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
|
||||
$a->strings["Facebook connection became invalid"] = "";
|
||||
$a->strings["Facebook connection became invalid"] = "Błędne połączenie z Facebookiem";
|
||||
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
|
||||
$a->strings["StatusNet AutoFollow settings updated."] = "";
|
||||
$a->strings["StatusNet AutoFollow Settings"] = "";
|
||||
|
@ -1173,6 +1176,7 @@ $a->strings["Facebook Post"] = "Wpis z Facebooka";
|
|||
$a->strings["Install Facebook Post connector for this account."] = "";
|
||||
$a->strings["Remove Facebook Post connector"] = "";
|
||||
$a->strings["Suppress \"View on friendica\""] = "";
|
||||
$a->strings["Mirror wall posts from facebook to friendica."] = "";
|
||||
$a->strings["Post to page/group:"] = "Napisz na stronę/grupę:";
|
||||
$a->strings["Facebook Post Settings"] = "Ustawienia wpisu z Facebooka";
|
||||
$a->strings["%s:"] = "";
|
||||
|
@ -1189,7 +1193,7 @@ $a->strings["%d person doesn't like this"] = array(
|
|||
$a->strings["Get added to this list!"] = "Zostań dodany do listy!";
|
||||
$a->strings["Generate new key"] = "Stwórz nowy klucz";
|
||||
$a->strings["Widgets key"] = "";
|
||||
$a->strings["Widgets available"] = "";
|
||||
$a->strings["Widgets available"] = "Widgety są dostępne";
|
||||
$a->strings["Connect on Friendica!"] = "Połączono z Friendica!";
|
||||
$a->strings["bitchslap"] = "";
|
||||
$a->strings["bitchslapped"] = "";
|
||||
|
@ -1228,7 +1232,7 @@ $a->strings["doubted"] = "";
|
|||
$a->strings["glare"] = "";
|
||||
$a->strings["glared at"] = "";
|
||||
$a->strings["YourLS Settings"] = "";
|
||||
$a->strings["URL: http://"] = "";
|
||||
$a->strings["URL: http://"] = "URL: http://";
|
||||
$a->strings["Username:"] = "Nazwa użytkownika:";
|
||||
$a->strings["Password:"] = "Hasło:";
|
||||
$a->strings["Use SSL "] = "Użyj SSL";
|
||||
|
@ -1238,7 +1242,7 @@ $a->strings["LiveJournal Post Settings"] = "Ustawienia postów do LiveJournal";
|
|||
$a->strings["Enable LiveJournal Post Plugin"] = "";
|
||||
$a->strings["LiveJournal username"] = "Nazwa użytkownika do LiveJournal";
|
||||
$a->strings["LiveJournal password"] = "Hasło do LiveJournal";
|
||||
$a->strings["Post to LiveJournal by default"] = "";
|
||||
$a->strings["Post to LiveJournal by default"] = "automatycznie publikuj na LiveJournal";
|
||||
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
|
||||
$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
|
||||
$a->strings["Enable Content filter"] = "";
|
||||
|
@ -1248,8 +1252,8 @@ $a->strings["NSFW Settings saved."] = "NSFW Ustawienia zapisane.";
|
|||
$a->strings["%s - Click to open/close"] = "%s - kliknij by otworzyć/zamknąć";
|
||||
$a->strings["Forums"] = "Fora";
|
||||
$a->strings["Forums:"] = "";
|
||||
$a->strings["Page settings updated."] = "";
|
||||
$a->strings["Page Settings"] = "";
|
||||
$a->strings["Page settings updated."] = "Zaktualizowano ustawienia strony.";
|
||||
$a->strings["Page Settings"] = "Ustawienia strony";
|
||||
$a->strings["How many forums to display on sidebar without paging"] = "";
|
||||
$a->strings["Randomise Page/Forum list"] = "";
|
||||
$a->strings["Show pages/forums on profile page"] = "";
|
||||
|
@ -1269,7 +1273,7 @@ $a->strings["Go back to the calendar"] = "Wróć do kalendarza";
|
|||
$a->strings["Event data"] = "Data wydarzenia";
|
||||
$a->strings["Calendar"] = "Kalendarz";
|
||||
$a->strings["Special color"] = "";
|
||||
$a->strings["Subject"] = "";
|
||||
$a->strings["Subject"] = "Temat";
|
||||
$a->strings["Starts"] = "Zaczyna się";
|
||||
$a->strings["Ends"] = "Kończy się";
|
||||
$a->strings["Description"] = "Opis";
|
||||
|
@ -1294,7 +1298,7 @@ $a->strings["Thursday"] = "Czwartek";
|
|||
$a->strings["Friday"] = "Piątek";
|
||||
$a->strings["Saturday"] = "Sobota";
|
||||
$a->strings["First day of week:"] = "Pierwszy dzień tygodnia:";
|
||||
$a->strings["Day of month"] = "";
|
||||
$a->strings["Day of month"] = "Dzień miesiąca";
|
||||
$a->strings["#num#th of each month"] = "";
|
||||
$a->strings["#num#th-last of each month"] = "";
|
||||
$a->strings["#num#th #wkday# of each month"] = "";
|
||||
|
@ -1312,7 +1316,7 @@ $a->strings["Exceptions"] = "Wyjątki";
|
|||
$a->strings["none"] = "";
|
||||
$a->strings["Notification"] = "Powiadomienie";
|
||||
$a->strings["Notify by"] = "";
|
||||
$a->strings["E-Mail"] = "";
|
||||
$a->strings["E-Mail"] = "E-Mail";
|
||||
$a->strings["On Friendica / Display"] = "";
|
||||
$a->strings["Time"] = "";
|
||||
$a->strings["Hours"] = "Godzin";
|
||||
|
@ -1322,7 +1326,7 @@ $a->strings["Weeks"] = "";
|
|||
$a->strings["before the"] = "";
|
||||
$a->strings["start of the event"] = "rozpoczęcie wydarzenia";
|
||||
$a->strings["end of the event"] = "zakończenie wydarzenia";
|
||||
$a->strings["Add a notification"] = "";
|
||||
$a->strings["Add a notification"] = "Dodaj powiadomienie";
|
||||
$a->strings["The event #name# will start at #date"] = "";
|
||||
$a->strings["#name# is about to begin."] = "";
|
||||
$a->strings["Saved"] = "Zapisano";
|
||||
|
@ -1336,7 +1340,7 @@ $a->strings["Your Friendica-Contacts"] = "Twoje kontakty friendica";
|
|||
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
|
||||
$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
|
||||
$a->strings["The ICS-File has been imported."] = "";
|
||||
$a->strings["No file was uploaded."] = "";
|
||||
$a->strings["No file was uploaded."] = "Nie wgrano pliku.";
|
||||
$a->strings["Import a ICS-file"] = "";
|
||||
$a->strings["ICS-File"] = "";
|
||||
$a->strings["Overwrite all #num# existing events"] = "";
|
||||
|
@ -1389,7 +1393,7 @@ $a->strings["Friendica Contacts"] = "Kontakty Friendica";
|
|||
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "";
|
||||
$a->strings["Template URL (with {category})"] = "";
|
||||
$a->strings["OAuth end-point"] = "";
|
||||
$a->strings["Api"] = "";
|
||||
$a->strings["Api"] = "Api";
|
||||
$a->strings["Member since:"] = "Data dołączenia:";
|
||||
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Trójwymiarowy Kółko i krzyżyk";
|
||||
$a->strings["3D Tic-Tac-Toe"] = "Kółko i krzyżyk 3D";
|
||||
|
@ -1405,7 +1409,7 @@ $a->strings["\"Cat\" game!"] = "Gra \"Kot\"!";
|
|||
$a->strings["I won!"] = "Wygrałem!";
|
||||
$a->strings["Randplace Settings"] = "Ustawienia Randplace";
|
||||
$a->strings["Enable Randplace Plugin"] = "";
|
||||
$a->strings["Post to Dreamwidth"] = "";
|
||||
$a->strings["Post to Dreamwidth"] = "Opublikuj na Dreamwidth";
|
||||
$a->strings["Dreamwidth Post Settings"] = "";
|
||||
$a->strings["Enable dreamwidth Post Plugin"] = "";
|
||||
$a->strings["dreamwidth username"] = "";
|
||||
|
@ -1424,7 +1428,7 @@ $a->strings["Startpage Settings"] = "Ustawienia strony startowej";
|
|||
$a->strings["Home page to load after login - leave blank for profile wall"] = "";
|
||||
$a->strings["Examples: "network" or "notifications/system""] = "";
|
||||
$a->strings["Geonames settings updated."] = "";
|
||||
$a->strings["Geonames Settings"] = "";
|
||||
$a->strings["Geonames Settings"] = "ustawienia Geonames";
|
||||
$a->strings["Enable Geonames Plugin"] = "";
|
||||
$a->strings["Your account on %s will expire in a few days."] = "";
|
||||
$a->strings["Your Friendica account is about to expire."] = "";
|
||||
|
@ -1522,7 +1526,7 @@ $a->strings["Your Friendica test account is about to expire."] = "";
|
|||
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
|
||||
$a->strings["\"pageheader\" Settings"] = "";
|
||||
$a->strings["pageheader Settings saved."] = "";
|
||||
$a->strings["Post to Insanejournal"] = "";
|
||||
$a->strings["Post to Insanejournal"] = "Opublikuj na Insanejournal";
|
||||
$a->strings["InsaneJournal Post Settings"] = "";
|
||||
$a->strings["Enable InsaneJournal Post Plugin"] = "";
|
||||
$a->strings["InsaneJournal username"] = "";
|
||||
|
@ -1565,17 +1569,19 @@ $a->strings["If enabled all your <strong>public</strong> postings can be posted
|
|||
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
|
||||
$a->strings["Allow posting to StatusNet"] = "";
|
||||
$a->strings["Send public postings to StatusNet by default"] = "";
|
||||
$a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "";
|
||||
$a->strings["Shortening method that optimizes the post"] = "";
|
||||
$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
|
||||
$a->strings["Clear OAuth configuration"] = "";
|
||||
$a->strings["API URL"] = "";
|
||||
$a->strings["API URL"] = "Adres API";
|
||||
$a->strings["Infinite Improbability Drive"] = "";
|
||||
$a->strings["You are now authenticated to tumblr."] = "";
|
||||
$a->strings["return to the connector page"] = "";
|
||||
$a->strings["Post to Tumblr"] = "Opublikuj na Tumblrze";
|
||||
$a->strings["Tumblr Post Settings"] = "";
|
||||
$a->strings["Tumblr Post Settings"] = "Ustawienia postu Tumblr";
|
||||
$a->strings["(Re-)Authenticate your tumblr page"] = "";
|
||||
$a->strings["Enable Tumblr Post Plugin"] = "";
|
||||
$a->strings["Post to Tumblr by default"] = "";
|
||||
$a->strings["Enable Tumblr Post Plugin"] = "Zezwól na wtyczkę postu Tumblr";
|
||||
$a->strings["Post to Tumblr by default"] = "Post do Tumblr przez standard";
|
||||
$a->strings["Post to page:"] = "Napisz na stronę:";
|
||||
$a->strings["You are not authenticated to tumblr"] = "";
|
||||
$a->strings["Numfriends settings updated."] = "";
|
||||
|
@ -1587,14 +1593,14 @@ $a->strings["Allows threading of email comment notifications on Gmail and anonym
|
|||
$a->strings["Enable this plugin/addon?"] = "Umożliwić tego plugina/wtyczkę?";
|
||||
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
|
||||
$a->strings["Post to Wordpress"] = "Opublikuj na Wordpress";
|
||||
$a->strings["WordPress Post Settings"] = "";
|
||||
$a->strings["Enable WordPress Post Plugin"] = "";
|
||||
$a->strings["WordPress Post Settings"] = "Ustawienia wpisów WorldPress";
|
||||
$a->strings["Enable WordPress Post Plugin"] = "Włącz plugin wpisów WorldPress";
|
||||
$a->strings["WordPress username"] = "nazwa użytkownika WordPress";
|
||||
$a->strings["WordPress password"] = "hasło WordPress";
|
||||
$a->strings["WordPress API URL"] = "";
|
||||
$a->strings["WordPress API URL"] = "WordPress API URL";
|
||||
$a->strings["Post to WordPress by default"] = "";
|
||||
$a->strings["Provide a backlink to the Friendica post"] = "";
|
||||
$a->strings["Post from Friendica"] = "";
|
||||
$a->strings["Post from Friendica"] = "Post z Friendica";
|
||||
$a->strings["Read the original post and comment stream on Friendica"] = "";
|
||||
$a->strings["\"Show more\" Settings"] = "\"Pokaż więcej\" ustawień";
|
||||
$a->strings["Enable Show More"] = "";
|
||||
|
@ -1604,7 +1610,7 @@ $a->strings["This website is tracked using the <a href='http://www.piwik.org'>Pi
|
|||
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "";
|
||||
$a->strings["Piwik Base URL"] = "";
|
||||
$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
|
||||
$a->strings["Site ID"] = "";
|
||||
$a->strings["Site ID"] = "ID strony";
|
||||
$a->strings["Show opt-out cookie link?"] = "";
|
||||
$a->strings["Asynchronous tracking"] = "";
|
||||
$a->strings["Post to Twitter"] = "Post na Twitter";
|
||||
|
@ -1618,9 +1624,11 @@ $a->strings["If enabled all your <strong>public</strong> postings can be posted
|
|||
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
|
||||
$a->strings["Allow posting to Twitter"] = "Zezwól na opublikowanie w serwisie Twitter";
|
||||
$a->strings["Send public postings to Twitter by default"] = "";
|
||||
$a->strings["Mirror all posts from twitter that are no replies or retweets"] = "";
|
||||
$a->strings["Shortening method that optimizes the tweet"] = "";
|
||||
$a->strings["Send linked #-tags and @-names to Twitter"] = "";
|
||||
$a->strings["Consumer key"] = "";
|
||||
$a->strings["Consumer secret"] = "";
|
||||
$a->strings["Consumer key"] = "Klucz konsumenta";
|
||||
$a->strings["Consumer secret"] = "Sekret konsumenta";
|
||||
$a->strings["IRC Settings"] = "Ustawienia IRC";
|
||||
$a->strings["Channel(s) to auto connect (comma separated)"] = "";
|
||||
$a->strings["Popular Channels (comma separated)"] = "";
|
||||
|
@ -1661,7 +1669,7 @@ $a->strings["Your personal photos"] = "Twoje osobiste zdjęcia";
|
|||
$a->strings["Community Pages"] = "Strony społecznościowe";
|
||||
$a->strings["Community Profiles"] = "";
|
||||
$a->strings["Last users"] = "Ostatni użytkownicy";
|
||||
$a->strings["Last likes"] = "";
|
||||
$a->strings["Last likes"] = "Ostatnie polubienia";
|
||||
$a->strings["Last photos"] = "Ostatnie zdjęcia";
|
||||
$a->strings["Find Friends"] = "Znajdź znajomych";
|
||||
$a->strings["Local Directory"] = "";
|
||||
|
@ -1714,11 +1722,11 @@ $a->strings["Reputable, has my trust"] = "Zaufane, ma moje poparcie";
|
|||
$a->strings["Frequently"] = "Jak najczęściej";
|
||||
$a->strings["Hourly"] = "Godzinowo";
|
||||
$a->strings["Twice daily"] = "Dwa razy dziennie";
|
||||
$a->strings["OStatus"] = "";
|
||||
$a->strings["RSS/Atom"] = "";
|
||||
$a->strings["OStatus"] = "OStatus";
|
||||
$a->strings["RSS/Atom"] = "RSS/Atom";
|
||||
$a->strings["Zot!"] = "";
|
||||
$a->strings["LinkedIn"] = "";
|
||||
$a->strings["XMPP/IM"] = "";
|
||||
$a->strings["LinkedIn"] = "LinkedIn";
|
||||
$a->strings["XMPP/IM"] = "XMPP/IM";
|
||||
$a->strings["MySpace"] = "MySpace";
|
||||
$a->strings["Google+"] = "";
|
||||
$a->strings["Male"] = "Mężczyzna";
|
||||
|
@ -1779,16 +1787,16 @@ $a->strings["Uncertain"] = "Nieokreślony";
|
|||
$a->strings["It's complicated"] = "To skomplikowane";
|
||||
$a->strings["Don't care"] = "Nie obchodzi mnie to";
|
||||
$a->strings["Ask me"] = "Zapytaj mnie ";
|
||||
$a->strings["Starts:"] = "";
|
||||
$a->strings["Starts:"] = "Start:";
|
||||
$a->strings["Finishes:"] = "Wykończenia:";
|
||||
$a->strings["(no subject)"] = "(bez tematu)";
|
||||
$a->strings[" on Last.fm"] = "";
|
||||
$a->strings[" on Last.fm"] = "na Last.fm";
|
||||
$a->strings["prev"] = "poprzedni";
|
||||
$a->strings["first"] = "pierwszy";
|
||||
$a->strings["last"] = "ostatni";
|
||||
$a->strings["next"] = "następny";
|
||||
$a->strings["newer"] = "";
|
||||
$a->strings["older"] = "";
|
||||
$a->strings["newer"] = "nowsze";
|
||||
$a->strings["older"] = "starsze";
|
||||
$a->strings["No contacts"] = "Brak kontaktów";
|
||||
$a->strings["%d Contact"] = array(
|
||||
0 => "%d kontakt",
|
||||
|
@ -1846,7 +1854,7 @@ $a->strings["Select an alternate language"] = "Wybierz alternatywny język";
|
|||
$a->strings["activity"] = "aktywność";
|
||||
$a->strings["post"] = "post";
|
||||
$a->strings["Item filed"] = "";
|
||||
$a->strings["Sharing notification from Diaspora network"] = "";
|
||||
$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora";
|
||||
$a->strings["Attachments:"] = "Załączniki:";
|
||||
$a->strings["view full size"] = "Zobacz pełen rozmiar";
|
||||
$a->strings["Embedded content"] = "";
|
||||
|
@ -1879,7 +1887,7 @@ $a->strings["Home Page"] = "Strona startowa";
|
|||
$a->strings["Create an account"] = "Załóż konto";
|
||||
$a->strings["Help and documentation"] = "Pomoc i dokumentacja";
|
||||
$a->strings["Apps"] = "Aplikacje";
|
||||
$a->strings["Addon applications, utilities, games"] = "";
|
||||
$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry";
|
||||
$a->strings["Search site content"] = "Przeszukaj zawartość strony";
|
||||
$a->strings["Conversations on this site"] = "Rozmowy na tej stronie";
|
||||
$a->strings["Directory"] = "Katalog";
|
||||
|
@ -1902,7 +1910,7 @@ $a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjació
|
|||
$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji";
|
||||
$a->strings["Nothing new here"] = "Brak nowych zdarzeń";
|
||||
$a->strings["Add New Contact"] = "Dodaj nowy kontakt";
|
||||
$a->strings["Enter address or web location"] = "";
|
||||
$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową";
|
||||
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara";
|
||||
$a->strings["%d invitation available"] = array(
|
||||
0 => "%d zaproszenie dostępne",
|
||||
|
@ -1939,7 +1947,7 @@ $a->strings["%1\$d %2\$s ago"] = "";
|
|||
$a->strings["%s's birthday"] = "";
|
||||
$a->strings["Happy Birthday %s"] = "";
|
||||
$a->strings["Image/photo"] = "Obrazek/zdjęcie";
|
||||
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>:</span>"] = "";
|
||||
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "";
|
||||
$a->strings["$1 wrote:"] = "$1 napisał:";
|
||||
$a->strings["Encrypted content"] = "";
|
||||
$a->strings["General Features"] = "";
|
||||
|
@ -1982,7 +1990,7 @@ $a->strings["Ability to mark special posts with a star indicator"] = "";
|
|||
$a->strings["Cannot locate DNS info for database server '%s'"] = "Nie można zlokalizować serwera DNS dla bazy danych '%s'";
|
||||
$a->strings["[no subject]"] = "[bez tematu]";
|
||||
$a->strings["Visible to everybody"] = "Widoczny dla wszystkich";
|
||||
$a->strings["Friendica Notification"] = "";
|
||||
$a->strings["Friendica Notification"] = "Powiadomienia Friendica";
|
||||
$a->strings["Thank You,"] = "Dziękuję,";
|
||||
$a->strings["%s Administrator"] = "%s administrator";
|
||||
$a->strings["%s <!item_type!>"] = "";
|
||||
|
@ -1990,13 +1998,13 @@ $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify]
|
|||
$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
|
||||
$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s";
|
||||
$a->strings["a private message"] = "prywatna wiadomość";
|
||||
$a->strings["Please visit %s to view and/or reply to your private messages."] = "";
|
||||
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
|
||||
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
|
||||
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
|
||||
$a->strings["%s commented on an item/conversation you have been following."] = "";
|
||||
$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
|
||||
$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz";
|
||||
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę";
|
||||
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s napisał na twoim profilu";
|
||||
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
|
||||
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
|
||||
|
@ -2021,7 +2029,7 @@ $a->strings["Name:"] = "Imię:";
|
|||
$a->strings["Photo:"] = "Zdjęcie:";
|
||||
$a->strings["Please visit %s to approve or reject the suggestion."] = "";
|
||||
$a->strings["Connect URL missing."] = "";
|
||||
$a->strings["This site is not configured to allow communications with other networks."] = "";
|
||||
$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami";
|
||||
$a->strings["No compatible communication protocols or feeds were discovered."] = "";
|
||||
$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji.";
|
||||
$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione.";
|
||||
|
@ -2073,9 +2081,8 @@ $a->strings["Delete Selected Items"] = "Usuń zaznaczone elementy";
|
|||
$a->strings["Follow Thread"] = "";
|
||||
$a->strings["%s likes this."] = "%s lubi to.";
|
||||
$a->strings["%s doesn't like this."] = "%s nie lubi tego.";
|
||||
$a->strings["like this"] = "";
|
||||
$a->strings["don't like this"] = "";
|
||||
$a->strings["people"] = "";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "";
|
||||
$a->strings["and"] = "i";
|
||||
$a->strings[", and %d other people"] = ", i %d innych ludzi";
|
||||
$a->strings["%s like this."] = "%s lubi to.";
|
||||
|
@ -2087,7 +2094,7 @@ $a->strings["Tag term:"] = "";
|
|||
$a->strings["Where are you right now?"] = "Gdzie teraz jesteś?";
|
||||
$a->strings["Delete item(s)?"] = "";
|
||||
$a->strings["permissions"] = "zezwolenia";
|
||||
$a->strings["Click here to upgrade."] = "";
|
||||
$a->strings["Click here to upgrade."] = "Kliknij tu, aby zaktualizować.";
|
||||
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
|
||||
$a->strings["This action is not available under your subscription plan."] = "";
|
||||
$a->strings["Delete this item?"] = "Usunąć ten element?";
|
||||
|
@ -2097,7 +2104,7 @@ $a->strings["Update Error at %s"] = "";
|
|||
$a->strings["Create a New Account"] = "Załóż nowe konto";
|
||||
$a->strings["Nickname or Email address: "] = "Nick lub adres email:";
|
||||
$a->strings["Password: "] = "Hasło:";
|
||||
$a->strings["Remember me"] = "";
|
||||
$a->strings["Remember me"] = "Zapamiętaj mnie";
|
||||
$a->strings["Or login using OpenID: "] = "Lub zaloguj się korzystając z OpenID:";
|
||||
$a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?";
|
||||
$a->strings["Website Terms of Service"] = "";
|
||||
|
@ -2124,17 +2131,17 @@ $a->strings["via"] = "";
|
|||
$a->strings["toggle mobile"] = "";
|
||||
$a->strings["Bg settings updated."] = "";
|
||||
$a->strings["Bg Settings"] = "";
|
||||
$a->strings["Post to Drupal"] = "";
|
||||
$a->strings["Drupal Post Settings"] = "";
|
||||
$a->strings["Enable Drupal Post Plugin"] = "";
|
||||
$a->strings["Drupal username"] = "";
|
||||
$a->strings["Drupal password"] = "";
|
||||
$a->strings["Post to Drupal"] = "Opublikuj na Drupal";
|
||||
$a->strings["Drupal Post Settings"] = "Ustawienia wpisów Drupala";
|
||||
$a->strings["Enable Drupal Post Plugin"] = "Włącz plugin wpisów Drupala";
|
||||
$a->strings["Drupal username"] = "Użytkownik Drupala";
|
||||
$a->strings["Drupal password"] = "hasło do Drupal";
|
||||
$a->strings["Post Type - article,page,or blog"] = "";
|
||||
$a->strings["Drupal site URL"] = "";
|
||||
$a->strings["Drupal site URL"] = "Adres strony Drupala";
|
||||
$a->strings["Drupal site uses clean URLS"] = "";
|
||||
$a->strings["Post to Drupal by default"] = "";
|
||||
$a->strings["OEmbed settings updated"] = "";
|
||||
$a->strings["Use OEmbed for YouTube videos"] = "";
|
||||
$a->strings["URL to embed:"] = "URL do osadzenia";
|
||||
$a->strings["Tumblr login"] = "";
|
||||
$a->strings["Tumblr login"] = "Login Tumblr";
|
||||
$a->strings["Tumblr password"] = "Hasło do twojego Tumblra";
|
||||
|
|
|
@ -20,9 +20,9 @@ tinyMCE.init({
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
content_css: "$baseurl/view/custom_tinymce.css",
|
||||
theme_advanced_path : false,
|
||||
setup : function(ed) {
|
||||
|
|
|
@ -6,37 +6,40 @@
|
|||
<script>
|
||||
$(function(){
|
||||
|
||||
$("#cnftheme").fancybox({
|
||||
width: 800,
|
||||
autoDimensions: false,
|
||||
onStart: function(){
|
||||
var theme = $("#id_theme :selected").val();
|
||||
var theme_mobile = $("#id_theme_mobile :selected").val();
|
||||
$("#cnftheme").attr('href',"{{$baseurl}}/admin/themes/"+theme);
|
||||
},
|
||||
onComplete: function(){
|
||||
$("div#fancybox-content form").submit(function(e){
|
||||
var url = $(this).attr('action');
|
||||
// can't get .serialize() to work...
|
||||
var data={};
|
||||
$(this).find("input").each(function(){
|
||||
data[$(this).attr('name')] = $(this).val();
|
||||
});
|
||||
$(this).find("select").each(function(){
|
||||
data[$(this).attr('name')] = $(this).children(":selected").val();
|
||||
});
|
||||
console.log(":)", url, data);
|
||||
$("#cnftheme").click(function(){
|
||||
$.colorbox({
|
||||
width: 800,
|
||||
height: '90%',
|
||||
/*onOpen: function(){
|
||||
var theme = $("#id_theme :selected").val();
|
||||
$("#cnftheme").attr('href',"{{$baseurl}}/admin/themes/"+theme);
|
||||
},*/
|
||||
href: "{{$baseurl}}/admin/themes/" + $("#id_theme :selected").val(),
|
||||
onComplete: function(){
|
||||
$("div#fancybox-content form").submit(function(e){
|
||||
var url = $(this).attr('action');
|
||||
// can't get .serialize() to work...
|
||||
var data={};
|
||||
$(this).find("input").each(function(){
|
||||
data[$(this).attr('name')] = $(this).val();
|
||||
});
|
||||
$(this).find("select").each(function(){
|
||||
data[$(this).attr('name')] = $(this).children(":selected").val();
|
||||
});
|
||||
console.log(":)", url, data);
|
||||
|
||||
$.post(url, data, function(data) {
|
||||
if(timer) clearTimeout(timer);
|
||||
NavUpdate();
|
||||
$.fancybox.close();
|
||||
})
|
||||
$.post(url, data, function(data) {
|
||||
if(timer) clearTimeout(timer);
|
||||
NavUpdate();
|
||||
$.colorbox.close();
|
||||
})
|
||||
|
||||
return false;
|
||||
});
|
||||
return false;
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<input type="hidden" name="type" value="{{$type}}" />
|
||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
||||
<input type="hidden" name="return" value="{{$return_path}}" />
|
||||
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
||||
<input type="hidden" name="jsreload" value="{{$jsreload}}" />
|
||||
<input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" />
|
||||
<input type="hidden" name="post_id_random" value="{{$rand_num}}" />
|
||||
|
|
19
view/smarty3/confirm.tpl
Normal file
|
@ -0,0 +1,19 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
<center>
|
||||
<form action="{{$confirm_url}}" id="confirm-form" method="{{$method}}">
|
||||
|
||||
<span id="confirm-message">{{$message}}</span>
|
||||
{{foreach $extra_inputs as $input}}
|
||||
<input type="hidden" name="{{$input.name}}" value="{{$input.value}}" />
|
||||
{{/foreach}}
|
||||
|
||||
<input class="confirm-button" id="confirm-submit-button" type="submit" name="{{$confirm_name}}" value="{{$confirm}}" />
|
||||
<input class="confirm-button" id="confirm-cancel-button" type="submit" name="canceled" value="{{$cancel}}" />
|
||||
|
||||
</form>
|
||||
</center>
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
{{/if}}
|
||||
|
||||
|
||||
<li><a href="network/?cid={{$contact_id}}" id="contact-edit-view-recent">{{$lblrecent}}</a></li>
|
||||
<li><a href="network/0?nets=all&cid={{$contact_id}}" id="contact-edit-view-recent">{{$lblrecent}}</a></li>
|
||||
{{if $lblsuggest}}
|
||||
<li><a href="fsuggest/{{$contact_id}}" id="contact-edit-suggest">{{$lblsuggest}}</a></li>
|
||||
{{/if}}
|
||||
|
|
|
@ -22,9 +22,9 @@ tinyMCE.init({
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
content_css: "{{$baseurl}}/view/custom_tinymce.css"
|
||||
|
||||
|
||||
|
|
|
@ -16,7 +16,13 @@
|
|||
<span onclick="openClose('contact-photo-menu-{{$contact.id}}');" class="fakelink contact-photo-menu-button" id="contact-photo-menu-button-{{$contact.id}}">menu</span>
|
||||
<div class="contact-photo-menu" id="contact-photo-menu-{{$contact.id}}">
|
||||
<ul>
|
||||
{{$contact.photo_menu}}
|
||||
{{foreach $contact.photo_menu as $c}}
|
||||
{{if $c.2}}
|
||||
<li><a target="redir" href="{{$c.1}}">{{$c.0}}</a></li>
|
||||
{{else}}
|
||||
<li><a href="{{$c.1}}">{{$c.0}}</a></li>
|
||||
{{/if}}
|
||||
{{/foreach}}
|
||||
</ul>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
$.get(
|
||||
'{{$baseurl}}/events/?id='+eventid,
|
||||
function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({html:data});
|
||||
}
|
||||
);
|
||||
}
|
||||
|
@ -99,9 +99,9 @@
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||
theme_advanced_path : false,
|
||||
setup : function(ed) {
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
<base href="{{$baseurl}}/" />
|
||||
<meta name="generator" content="{{$generator}}" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/tiptip/tipTip.css" type="text/css" media="screen" />
|
||||
{{*<!--<link rel="stylesheet" href="{{$baseurl}}/library/fancybox/jquery.fancybox.css" type="text/css" media="screen" />-->*}}
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/colorbox/colorbox.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />
|
||||
|
@ -29,8 +29,8 @@
|
|||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.textinputs.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/fk.autocomplete.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/tiptip/jquery.tipTip.minified.js"></script>
|
||||
{{*<!--<script type="text/javascript" src="{{$baseurl}}/library/fancybox/jquery.fancybox.pack.js"></script>-->*}}
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/colorbox/jquery.colorbox-min.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/acl.js" ></script>
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
*
|
||||
*}}
|
||||
<form action="invite" method="post" id="invite-form" >
|
||||
|
||||
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
|
||||
|
||||
<div id="invite-wrapper">
|
||||
|
||||
<h3>{{$invite}}</h3>
|
||||
|
|
|
@ -18,9 +18,9 @@ function initEditor(cb){
|
|||
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
|
||||
$("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
|
||||
editor = true;
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
$(".jothidden").show();
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
@ -43,9 +43,9 @@ function initEditor(cb){
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
convert_urls: false,
|
||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||
theme_advanced_path : false,
|
||||
|
@ -110,9 +110,9 @@ function initEditor(cb){
|
|||
});
|
||||
editor = true;
|
||||
// setup acl popup
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
} else {
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
@ -279,7 +279,7 @@ function enableOnUser(){
|
|||
var bordercolor = $("input").css("border-color");
|
||||
|
||||
$.get('filer/', function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({html:data});
|
||||
$("#id_term").keypress(function(){
|
||||
$(this).css("border-color",bordercolor);
|
||||
})
|
||||
|
@ -297,7 +297,7 @@ function enableOnUser(){
|
|||
// if(timer) clearTimeout(timer);
|
||||
// timer = setTimeout(NavUpdate,3000);
|
||||
liking = 1;
|
||||
$.fancybox.close();
|
||||
$.colorbox.close();
|
||||
} else {
|
||||
$("#id_term").css("border-color","#FF0000");
|
||||
}
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
*}}
|
||||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-{{$id}}">
|
||||
<a href="#" class="icon like" title="{{$likethis}}" onclick="dolike({{$id}},'like'); return false"></a>
|
||||
{{if $nolike}}
|
||||
<a href="#" class="icon dislike" title="{{$nolike}}" onclick="dolike({{$id}},'dislike'); return false"></a>
|
||||
{{/if}}
|
||||
<img id="like-rotator-{{$id}}" class="like-rotator" src="images/rotator.gif" alt="{{$wait}}" title="{{$wait}}" style="display: none;" />
|
||||
</div>
|
||||
|
|
22
view/smarty3/manage.tpl
Normal file
|
@ -0,0 +1,22 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
<h3>{{$title}}</h3>
|
||||
<div id="identity-manage-desc">{{$desc}}</div>
|
||||
<div id="identity-manage-choose">{{$choose}}</div>
|
||||
<div id="identity-selector-wrapper">
|
||||
<form action="manage" method="post" >
|
||||
<select name="identity" size="4" onchange="this.form.submit();" >
|
||||
|
||||
{{foreach $identities as $id}}
|
||||
<option {{$id.selected}} value="{{$id.uid}}">{{$id.username}} ({{$id.nickname}})</option>
|
||||
{{/foreach}}
|
||||
|
||||
</select>
|
||||
<div id="identity-select-break"></div>
|
||||
|
||||
{{*<!--<input id="identity-submit" type="submit" name="submit" value="{{$submit}}" />-->*}}
|
||||
</div></form>
|
||||
|
|
@ -26,9 +26,9 @@ if(plaintext != 'none') {
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
convert_urls: false,
|
||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||
//Character count
|
||||
|
|
108
view/smarty3/navigation.tpl
Normal file
|
@ -0,0 +1,108 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
{{*
|
||||
# LOGIN/REGISTER
|
||||
*}}
|
||||
<center>
|
||||
{{* Use nested if's since the Friendica template engine doesn't support AND or OR in if statements *}}
|
||||
{{if $nav.login}}
|
||||
<div id="navigation-login-wrapper" >
|
||||
{{else}}
|
||||
{{if $nav.register}}
|
||||
<div id="navigation-login-wrapper" >
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{if $nav.login}}<a id="navigation-login-link" class="navigation-link {{$nav.login.2}}" href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a><br/> {{/if}}
|
||||
{{if $nav.register}}<a id="navigation-register-link" class="navigation-link {{$nav.register.2}} {{$sel.register}}" href="{{$nav.register.0}}" title="{{$nav.register.3}}" >{{$nav.register.1}}</a><br/>{{/if}}
|
||||
{{if $nav.login}}
|
||||
</div>
|
||||
{{else}}
|
||||
{{if $nav.register}}
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{*
|
||||
# NETWORK/HOME
|
||||
*}}
|
||||
{{if $nav.network}}
|
||||
<div id="navigation-network-wrapper" >
|
||||
{{else}}
|
||||
{{if $nav.home}}
|
||||
<div id="navigation-network-wrapper" >
|
||||
{{else}}
|
||||
{{if $nav.community}}
|
||||
<div id="navigation-network-wrapper" >
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{if $nav.network}}
|
||||
<a id="navigation-network-link" class="navigation-link navigation-commlink {{$nav.network.2}} {{$sel.network}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a><br/>
|
||||
<a class="navigation-link navigation-commlink" href="{{$nav.net_reset.0}}" title="{{$nav.net_reset.3}}">{{$nav.net_reset.1}}</a><br/>
|
||||
{{/if}}
|
||||
{{if $nav.home}}
|
||||
<a id="navigation-home-link" class="navigation-link navigation-commlink {{$nav.home.2}} {{$sel.home}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a><br/>
|
||||
{{/if}}
|
||||
{{if $nav.community}}
|
||||
<a id="navigation-community-link" class="navigation-link navigation-commlink {{$nav.community.2}} {{$sel.community}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a><br/>
|
||||
{{/if}}
|
||||
{{if $nav.network}}
|
||||
</div>
|
||||
{{else}}
|
||||
{{if $nav.home}}
|
||||
</div>
|
||||
{{else}}
|
||||
{{if $nav.community}}
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{*
|
||||
# PRIVATE MESSAGES
|
||||
*}}
|
||||
{{if $nav.messages}}
|
||||
<div id="navigation-messages-wrapper">
|
||||
<a id="navigation-messages-link" class="navigation-link navigation-commlink {{$nav.messages.2}} {{$sel.messages}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" >{{$nav.messages.1}}</a><br/>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
|
||||
{{*
|
||||
# CONTACTS
|
||||
*}}
|
||||
<div id="navigation-contacts-wrapper">
|
||||
{{if $nav.contacts}}<a id="navigation-contacts-link" class="navigation-link {{$nav.contacts.2}}" href="{{$nav.contacts.0}}" title="{{$nav.contacts.3}}" >{{$nav.contacts.1}}</a><br/>{{/if}}
|
||||
<a id="navigation-directory-link" class="navigation-link {{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}" >{{$nav.directory.1}}</a><br/>
|
||||
{{if $nav.introductions}}
|
||||
<a id="navigation-notify-link" class="navigation-link navigation-commlink {{$nav.introductions.2}} {{$sel.introductions}}" href="{{$nav.introductions.0}}" title="{{$nav.introductions.3}}" >{{$nav.introductions.1}}</a><br/>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
{{*
|
||||
# NOTIFICATIONS
|
||||
*}}
|
||||
{{if $nav.notifications}}
|
||||
<div id="navigation-notifications-wrapper">
|
||||
<a id="navigation-notifications-link" class="navigation-link navigation-commlink" href="{{$nav.notifications.0}}" rel="#navigation-notifications-menu" title="{{$nav.notifications.1}}">{{$nav.notifications.1}}</a><br/>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{*
|
||||
# MISCELLANEOUS
|
||||
*}}
|
||||
<div id="navigation-misc-wrapper">
|
||||
{{if $nav.settings}}<a id="navigation-settings-link" class="navigation-link {{$nav.settings.2}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}">{{$nav.settings.1}}</a><br/>{{/if}}
|
||||
{{if $nav.manage}}<a id="navigation-manage-link" class="navigation-link navigation-commlink {{$nav.manage.2}} {{$sel.manage}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}">{{$nav.manage.1}}</a><br/>{{/if}}
|
||||
{{if $nav.profiles}}<a id="navigation-profiles-link" class="navigation-link {{$nav.profiles.2}}" href="{{$nav.profiles.0}}" title="{{$nav.profiles.3}}" >{{$nav.profiles.1}}</a><br/>{{/if}}
|
||||
{{if $nav.admin}}<a id="navigation-admin-link" class="navigation-link {{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a><br/>{{/if}}
|
||||
<a id="navigation-search-link" class="navigation-link {{$nav.search.2}}" href="{{$nav.search.0}}" title="{{$nav.search.3}}" >{{$nav.search.1}}</a><br/>
|
||||
{{if $nav.apps}}<a id="navigation-apps-link" class="navigation-link {{$nav.apps.2}}" href="{{$nav.apps.0}}" title="{{$nav.apps.3}}" >{{$nav.apps.1}}</a><br/>{{/if}}
|
||||
{{if $nav.help}} <a id="navigation-help-link" class="navigation-link {{$nav.help.2}}" target="friendica-help" href="{{$nav.help.0}}" title="{{$nav.help.3}}" >{{$nav.help.1}}</a><br/>{{/if}}
|
||||
</div>
|
||||
|
||||
{{if $nav.logout}}<a id="navigation-logout-link" class="navigation-link {{$nav.logout.2}}" href="{{$nav.logout.0}}" title="{{$nav.logout.3}}" >{{$nav.logout.1}}</a><br/>{{/if}}
|
||||
</center>
|
6
view/smarty3/photos_default_uploader_box.tpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
<input id="photos-upload-choose" type="file" name="userfile" />
|
8
view/smarty3/photos_default_uploader_submit.tpl
Normal file
|
@ -0,0 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
<div class="photos-upload-submit-wrapper" >
|
||||
<input type="submit" name="submit" value="{{$submit}}" id="photos-upload-submit" />
|
||||
</div>
|
|
@ -44,9 +44,10 @@
|
|||
|
||||
<div id="photos-upload-spacer"></div>
|
||||
|
||||
{{$uploader}}
|
||||
{{$alt_uploader}}
|
||||
|
||||
{{$default}}
|
||||
{{$default_upload_box}}
|
||||
{{$default_upload_submit}}
|
||||
|
||||
<div class="photos-upload-end" ></div>
|
||||
</form>
|
||||
|
|
|
@ -25,9 +25,9 @@ tinyMCE.init({
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||
theme_advanced_path : false,
|
||||
setup : function(ed) {
|
||||
|
|
|
@ -26,9 +26,9 @@ if(plaintext != 'none') {
|
|||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
//force_p_newlines : false,
|
||||
//force_br_newlines : true,
|
||||
forced_root_block : 'div',
|
||||
convert_urls: false,
|
||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||
//Character count
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<input type="hidden" name="type" value="$type" />
|
||||
<input type="hidden" name="profile_uid" value="$profile_uid" />
|
||||
<input type="hidden" name="parent" value="$parent" />
|
||||
<input type="hidden" name="return" value="$return_path" />
|
||||
{#<!--<input type="hidden" name="return" value="$return_path" />-->#}
|
||||
<input type="hidden" name="jsreload" value="$jsreload" />
|
||||
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
|
||||
<input type="hidden" name="post_id_random" value="$rand_num" />
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<input type="hidden" name="type" value="{{$type}}" />
|
||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
||||
<input type="hidden" name="return" value="{{$return_path}}" />
|
||||
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
||||
<input type="hidden" name="jsreload" value="{{$jsreload}}" />
|
||||
<input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" />
|
||||
<input type="hidden" name="post_id_random" value="{{$rand_num}}" />
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<input type="hidden" name="type" value="$type" />
|
||||
<input type="hidden" name="profile_uid" value="$profile_uid" />
|
||||
<input type="hidden" name="parent" value="$parent" />
|
||||
<input type="hidden" name="return" value="$return_path" />
|
||||
{#<!--<input type="hidden" name="return" value="$return_path" />-->#}
|
||||
<input type="hidden" name="jsreload" value="$jsreload" />
|
||||
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
|
||||
<input type="hidden" name="post_id_random" value="$rand_num" />
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<input type="hidden" name="type" value="{{$type}}" />
|
||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
||||
<input type="hidden" name="return" value="{{$return_path}}" />
|
||||
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
||||
<input type="hidden" name="jsreload" value="{{$jsreload}}" />
|
||||
<input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" />
|
||||
<input type="hidden" name="post_id_random" value="{{$rand_num}}" />
|
||||
|
|
31
view/theme/decaf-mobile/TODO
Normal file
|
@ -0,0 +1,31 @@
|
|||
Photo album display?
|
||||
|
||||
- The "lock" icon for private items
|
||||
- change it to black?
|
||||
- when clicked, the popup window displays poorly
|
||||
|
||||
- Edit photo page: bottom buttons are off-center in Dolphin Mini
|
||||
|
||||
- BB code buttons for status updates
|
||||
|
||||
- Get "add contact" back on contacts page
|
||||
|
||||
- Allow creating a new private message
|
||||
|
||||
- Admin: access to more pages than summary?
|
||||
|
||||
- Find a way to show embedded videos at the normal size for tablets that can handle it
|
||||
|
||||
- Need to find a way to deal with freakin annoying elements that don't respect screen width limits.
|
||||
Specifically, need to find a way to keep them from forcing a horizontal scroll bar to show up and
|
||||
making the rest of the body text overflow the item's borders that is screen-width sensitive (it's
|
||||
annoying to have a 300px truncated code block on a 1024px wide screen). At least the following cause problems:
|
||||
- code blocks
|
||||
- blockquote blocks
|
||||
- #reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallylongtags
|
||||
|
||||
- Needs to be faster!
|
||||
- Reduce DOM elements (~2400 for 10 items, ~8400 for 40 items)
|
||||
|
||||
|
||||
- Sometimes, when "Permission denied", wrong login page is shown
|
29
view/theme/decaf-mobile/acl_html_selector.tpl
Normal file
|
@ -0,0 +1,29 @@
|
|||
<a name="acl-wrapper-target"></a>
|
||||
<div id="acl-wrapper">
|
||||
<div id="acl-public-switch">
|
||||
<a href="$return_path#acl-wrapper-target" {{ if $is_private == 1 }}class="acl-public-switch-selected"{{ endif }} >$private</a>
|
||||
<a href="$return_path$public_link#acl-wrapper-target" {{ if $is_private == 0 }}class="acl-public-switch-selected"{{ endif }} >$public</a>
|
||||
</div>
|
||||
<div id="acl-list">
|
||||
<div id="acl-list-content">
|
||||
<div id="acl-html-groups" class="acl-html-select-wrapper">
|
||||
$group_perms<br />
|
||||
<select name="group_allow[]" multiple {{ if $is_private == 0 }}disabled{{ endif }} id="acl-html-group-select" class="acl-html-select" size=7>
|
||||
{{ for $acl_data.groups as $group }}
|
||||
<option value="$group.id" {{ if $is_private == 1 }}{{ if $group.selected }}selected{{ endif }}{{ endif }}>$group.name</option>
|
||||
{{ endfor }}
|
||||
</select>
|
||||
</div>
|
||||
<div id="acl-html-contacts" class="acl-html-select-wrapper">
|
||||
$contact_perms<br />
|
||||
<select name="contact_allow[]" multiple {{ if $is_private == 0 }}disabled{{ endif }} id="acl-html-contact-select" class="acl-html-select" size=7>
|
||||
{{ for $acl_data.contacts as $contact }}
|
||||
<option value="$contact.id" {{ if $is_private == 1 }}{{ if $contact.selected }}selected{{ endif }}{{ endif }}>$contact.name ($contact.networkName)</option>
|
||||
{{ endfor }}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<span id="acl-fields"></span>
|
||||
</div>
|
||||
|
23
view/theme/decaf-mobile/acl_selector.tpl
Normal file
|
@ -0,0 +1,23 @@
|
|||
<div id="acl-wrapper">
|
||||
<input id="acl-search">
|
||||
<a href="#" id="acl-showall">$showall</a>
|
||||
<div id="acl-list">
|
||||
<div id="acl-list-content">
|
||||
</div>
|
||||
</div>
|
||||
<span id="acl-fields"></span>
|
||||
</div>
|
||||
|
||||
<div class="acl-list-item" rel="acl-template" style="display:none">
|
||||
<img data-src="{0}"><p>{1}</p>
|
||||
<a href="#" class='acl-button-show'>$show</a>
|
||||
<a href="#" class='acl-button-hide'>$hide</a>
|
||||
</div>
|
||||
|
||||
{#<!--<script>
|
||||
window.allowCID = $allowcid;
|
||||
window.allowGID = $allowgid;
|
||||
window.denyCID = $denycid;
|
||||
window.denyGID = $denygid;
|
||||
window.aclInit = "true";
|
||||
</script>-->#}
|
31
view/theme/decaf-mobile/admin_aside.tpl
Normal file
|
@ -0,0 +1,31 @@
|
|||
|
||||
<h4><a href="$admurl">$admtxt</a></h4>
|
||||
<ul class='admin linklist'>
|
||||
<li class='admin button $admin.site.2'><a href='$admin.site.0'>$admin.site.1</a></li>
|
||||
<li class='admin button $admin.users.2'><a href='$admin.users.0'>$admin.users.1</a><span id='pending-update' title='$h_pending'></span></li>
|
||||
<li class='admin button $admin.plugins.2'><a href='$admin.plugins.0'>$admin.plugins.1</a></li>
|
||||
<li class='admin button $admin.themes.2'><a href='$admin.themes.0'>$admin.themes.1</a></li>
|
||||
<li class='admin button $admin.dbsync.2'><a href='$admin.dbsync.0'>$admin.dbsync.1</a></li>
|
||||
</ul>
|
||||
|
||||
{{ if $admin.update }}
|
||||
<ul class='admin linklist'>
|
||||
<li class='admin button $admin.update.2'><a href='$admin.update.0'>$admin.update.1</a></li>
|
||||
<li class='admin button $admin.update.2'><a href='https://kakste.com/profile/inthegit'>Important Changes</a></li>
|
||||
</ul>
|
||||
{{ endif }}
|
||||
|
||||
|
||||
{{ if $admin.plugins_admin }}<h4>$plugadmtxt</h4>{{ endif }}
|
||||
<ul class='admin linklist'>
|
||||
{{ for $admin.plugins_admin as $l }}
|
||||
<li class='admin button $l.2'><a href='$l.0'>$l.1</a></li>
|
||||
{{ endfor }}
|
||||
</ul>
|
||||
|
||||
|
||||
<h4>$logtxt</h4>
|
||||
<ul class='admin linklist'>
|
||||
<li class='admin button $admin.logs.2'><a href='$admin.logs.0'>$admin.logs.1</a></li>
|
||||
</ul>
|
||||
|
61
view/theme/decaf-mobile/admin_site.tpl
Normal file
|
@ -0,0 +1,61 @@
|
|||
|
||||
<div id='adminpage'>
|
||||
<h1>$title - $page</h1>
|
||||
|
||||
<form action="$baseurl/admin/site" method="post">
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
|
||||
{{ inc field_input.tpl with $field=$sitename }}{{ endinc }}
|
||||
{{ inc field_textarea.tpl with $field=$banner }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$language }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$theme }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$theme_mobile }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$ssl_policy }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
||||
<h3>$registration</h3>
|
||||
{{ inc field_input.tpl with $field=$register_text }}{{ endinc }}
|
||||
{{ inc field_select.tpl with $field=$register_policy }}{{ endinc }}
|
||||
|
||||
{{ inc field_checkbox.tpl with $field=$no_multi_reg }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$no_openid }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$no_regfullname }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
||||
<h3>$upload</h3>
|
||||
{{ inc field_input.tpl with $field=$maximagesize }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$maximagelength }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$jpegimagequality }}{{ endinc }}
|
||||
|
||||
<h3>$corporate</h3>
|
||||
{{ inc field_input.tpl with $field=$allowed_sites }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$allowed_email }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$block_public }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$force_publish }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$no_community_page }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
||||
<h3>$advanced</h3>
|
||||
{{ inc field_checkbox.tpl with $field=$no_utf }}{{ endinc }}
|
||||
{{ inc field_checkbox.tpl with $field=$verifyssl }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$proxy }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$proxyuser }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$timeout }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$delivery_interval }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$poll_interval }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$maxloadavg }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$abandon_days }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
||||
</form>
|
||||
</div>
|
98
view/theme/decaf-mobile/admin_users.tpl
Normal file
|
@ -0,0 +1,98 @@
|
|||
<script>
|
||||
function confirm_delete(uname){
|
||||
return confirm( "$confirm_delete".format(uname));
|
||||
}
|
||||
function confirm_delete_multi(){
|
||||
return confirm("$confirm_delete_multi");
|
||||
}
|
||||
{#/*function selectall(cls){
|
||||
$j("."+cls).attr('checked','checked');
|
||||
return false;
|
||||
}*/#}
|
||||
</script>
|
||||
<div id='adminpage'>
|
||||
<h1>$title - $page</h1>
|
||||
|
||||
<form action="$baseurl/admin/users" method="post">
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
|
||||
<h3>$h_pending</h3>
|
||||
{{ if $pending }}
|
||||
<table id='pending'>
|
||||
<thead>
|
||||
<tr>
|
||||
{{ for $th_pending as $th }}<th>$th</th>{{ endfor }}
|
||||
<th></th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{ for $pending as $u }}
|
||||
<tr>
|
||||
<td class="created">$u.created</td>
|
||||
<td class="name">$u.name</td>
|
||||
<td class="email">$u.email</td>
|
||||
<td class="checkbox"><input type="checkbox" class="pending_ckbx" id="id_pending_$u.hash" name="pending[]" value="$u.hash" /></td>
|
||||
<td class="tools">
|
||||
<a href="$baseurl/regmod/allow/$u.hash" title='$approve'><span class='tool like'></span></a>
|
||||
<a href="$baseurl/regmod/deny/$u.hash" title='$deny'><span class='tool dislike'></span></a>
|
||||
</td>
|
||||
</tr>
|
||||
{{ endfor }}
|
||||
</tbody>
|
||||
</table>
|
||||
{#<!--<div class='selectall'><a href='#' onclick="return selectall('pending_ckbx');">$select_all</a></div>-->#}
|
||||
<div class="submit"><input type="submit" name="page_users_deny" value="$deny"/> <input type="submit" name="page_users_approve" value="$approve" /></div>
|
||||
{{ else }}
|
||||
<p>$no_pending</p>
|
||||
{{ endif }}
|
||||
|
||||
|
||||
|
||||
|
||||
<h3>$h_users</h3>
|
||||
{{ if $users }}
|
||||
<table id='users'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
{{ for $th_users as $th }}<th>$th</th>{{ endfor }}
|
||||
<th></th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{ for $users as $u }}
|
||||
<tr>
|
||||
<td><img src="$u.micro" alt="$u.nickname" title="$u.nickname"></td>
|
||||
<td class='name'><a href="$u.url" title="$u.nickname" >$u.name</a></td>
|
||||
<td class='email'>$u.email</td>
|
||||
<td class='register_date'>$u.register_date</td>
|
||||
<td class='login_date'>$u.login_date</td>
|
||||
<td class='lastitem_date'>$u.lastitem_date</td>
|
||||
<td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }}</td>
|
||||
<td class="checkbox">
|
||||
{{ if $u.is_admin }}
|
||||
|
||||
{{ else }}
|
||||
<input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||
{{ endif }}
|
||||
<td class="tools">
|
||||
{{ if $u.is_admin }}
|
||||
|
||||
{{ else }}
|
||||
<a href="$baseurl/admin/users/block/$u.uid?t=$form_security_token" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid?t=$form_security_token" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon drop'></span></a>
|
||||
{{ endif }}
|
||||
</td>
|
||||
</tr>
|
||||
{{ endfor }}
|
||||
</tbody>
|
||||
</table>
|
||||
{#<!--<div class='selectall'><a href='#' onclick="return selectall('users_ckbx');">$select_all</a></div>-->#}
|
||||
<div class="submit"><input type="submit" name="page_users_block" value="$block/$unblock" /> <input type="submit" name="page_users_delete" value="$delete" onclick="return confirm_delete_multi()" /></div>
|
||||
{{ else }}
|
||||
NO USERS?!?
|
||||
{{ endif }}
|
||||
</form>
|
||||
</div>
|
15
view/theme/decaf-mobile/album_edit.tpl
Normal file
|
@ -0,0 +1,15 @@
|
|||
<div id="photo-album-edit-wrapper">
|
||||
<form name="photo-album-edit-form" id="photo-album-edit-form" action="photos/$nickname/album/$hexalbum" method="post" >
|
||||
<input id="photo-album-edit-form-confirm" type="hidden" name="confirm" value="1" />
|
||||
|
||||
<label id="photo-album-edit-name-label" for="photo-album-edit-name" >$nametext</label>
|
||||
<input type="text" size="64" name="albumname" value="$album" >
|
||||
|
||||
<div id="photo-album-edit-name-end"></div>
|
||||
|
||||
<input id="photo-album-edit-submit" type="submit" name="submit" value="$submit" />
|
||||
<input id="photo-album-edit-drop" type="submit" name="dropalbum" value="$dropsubmit" onclick="return confirmDelete(function(){remove('photo-album-edit-form-confirm');});" />
|
||||
|
||||
</form>
|
||||
</div>
|
||||
<div id="photo-album-edit-end" ></div>
|
BIN
view/theme/decaf-mobile/border.jpg
Normal file
After Width: | Height: | Size: 342 B |
12
view/theme/decaf-mobile/categories_widget.tpl
Normal file
|
@ -0,0 +1,12 @@
|
|||
{#<!--<div id="categories-sidebar" class="widget">
|
||||
<h3>$title</h3>
|
||||
<div id="nets-desc">$desc</div>
|
||||
|
||||
<ul class="categories-ul">
|
||||
<li class="tool"><a href="$base" class="categories-link categories-all{{ if $sel_all }} categories-selected{{ endif }}">$all</a></li>
|
||||
{{ for $terms as $term }}
|
||||
<li class="tool"><a href="$base?f=&category=$term.name" class="categories-link{{ if $term.selected }} categories-selected{{ endif }}">$term.name</a></li>
|
||||
{{ endfor }}
|
||||
</ul>
|
||||
|
||||
</div>-->#}
|
79
view/theme/decaf-mobile/comment_item.tpl
Executable file
|
@ -0,0 +1,79 @@
|
|||
{#<!-- <script>
|
||||
$(document).ready( function () {
|
||||
$(document).mouseup(function(e) {
|
||||
var container = $("#comment-edit-wrapper-$id");
|
||||
if( container.has(e.target).length === 0) {
|
||||
commentClose(document.getElementById('comment-edit-text-$id'),$id);
|
||||
cmtBbClose($id);
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>-->#}
|
||||
|
||||
<div class="comment-wwedit-wrapper $indent" id="comment-edit-wrapper-$id" style="display: block;" >
|
||||
<a name="comment-wwedit-wrapper-pos"></a>
|
||||
<form class="comment-edit-form $indent" id="comment-edit-form-$id" action="item" method="post" >
|
||||
{#<!-- <span id="hide-commentbox-$id" class="hide-commentbox fakelink" onclick="showHideCommentBox($id);">$comment</span>
|
||||
<form class="comment-edit-form" style="display: none;" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">-->#}
|
||||
<input type="hidden" name="type" value="$type" />
|
||||
<input type="hidden" name="source" value="$sourceapp" />
|
||||
<input type="hidden" name="profile_uid" value="$profile_uid" />
|
||||
<input type="hidden" name="parent" value="$parent" />
|
||||
<input type="hidden" name="return" value="$return_path#comment-wwedit-wrapper-pos" />
|
||||
<input type="hidden" name="jsreload" value="$jsreload" />
|
||||
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
|
||||
<input type="hidden" name="post_id_random" value="$rand_num" />
|
||||
|
||||
{#<!--<div class="comment-edit-photo" id="comment-edit-photo-$id" >-->#}
|
||||
<a class="comment-edit-photo comment-edit-photo-link" id="comment-edit-photo-$id" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
|
||||
{#<!--</div>-->#}
|
||||
{#<!--<div class="comment-edit-photo-end"></div>-->#}
|
||||
{#<!--<ul class="comment-edit-bb-$id">
|
||||
<li><a class="editicon boldbb shadow"
|
||||
style="cursor: pointer;" title="$edbold"
|
||||
onclick="insertFormatting('$comment','b', $id);"></a></li>
|
||||
<li><a class="editicon italicbb shadow"
|
||||
style="cursor: pointer;" title="$editalic"
|
||||
onclick="insertFormatting('$comment','i', $id);"></a></li>
|
||||
<li><a class="editicon underlinebb shadow"
|
||||
style="cursor: pointer;" title="$eduline"
|
||||
onclick="insertFormatting('$comment','u', $id);"></a></li>
|
||||
<li><a class="editicon quotebb shadow"
|
||||
style="cursor: pointer;" title="$edquote"
|
||||
onclick="insertFormatting('$comment','quote', $id);"></a></li>
|
||||
<li><a class="editicon codebb shadow"
|
||||
style="cursor: pointer;" title="$edcode"
|
||||
onclick="insertFormatting('$comment','code', $id);"></a></li>-->#}
|
||||
{#<!-- <li><a class="editicon imagebb shadow"
|
||||
style="cursor: pointer;" title="$edimg"
|
||||
onclick="insertFormatting('$comment','img', $id);"></a></li>
|
||||
<li><a class="editicon urlbb shadow"
|
||||
style="cursor: pointer;" title="$edurl"
|
||||
onclick="insertFormatting('$comment','url', $id);"></a></li>
|
||||
<li><a class="editicon videobb shadow"
|
||||
style="cursor: pointer;" title="$edvideo"
|
||||
onclick="insertFormatting('$comment','video', $id);"></a></li>-->#}
|
||||
{#<!--</ul> -->#}
|
||||
{#<!--<div class="comment-edit-bb-end"></div>-->#}
|
||||
{#<!-- <textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);cmtBbClose($id);" >$comment</textarea>-->#}
|
||||
<textarea id="comment-edit-text-$id" class="comment-edit-text-full" name="body" ></textarea>
|
||||
{#<!--{{ if $qcomment }}
|
||||
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
|
||||
<option value=""></option>
|
||||
{{ for $qcomment as $qc }}
|
||||
<option value="$qc">$qc</option>
|
||||
{{ endfor }}
|
||||
</select>
|
||||
{{ endif }}-->#}
|
||||
|
||||
<div class="comment-edit-text-end"></div>
|
||||
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" >
|
||||
<input type="submit" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" />
|
||||
{#<!--<span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="preview-link fakelink">$preview</span>
|
||||
<div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div>-->#}
|
||||
</div>
|
||||
|
||||
{#<!--<div class="comment-edit-end"></div>-->#}
|
||||
</form>
|
||||
|
||||
</div>
|
6
view/theme/decaf-mobile/common_tabs.tpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
<ul class="tabs">
|
||||
{{ for $tabs as $tab }}
|
||||
<li id="$tab.id"><a href="$tab.url" class="tab button $tab.sel"{{ if $tab.title }} title="$tab.title"{{ endif }}>$tab.label</a></li>
|
||||
{{ endfor }}
|
||||
<div id="tabs-end"></div>
|
||||
</ul>
|
12
view/theme/decaf-mobile/contact_block.tpl
Normal file
|
@ -0,0 +1,12 @@
|
|||
{#<!--<div id="contact-block">
|
||||
<h4 class="contact-block-h4">$contacts</h4>
|
||||
{{ if $micropro }}
|
||||
<a class="allcontact-link" href="viewcontacts/$nickname">$viewcontacts</a>
|
||||
<div class='contact-block-content'>
|
||||
{{ for $micropro as $m }}
|
||||
$m
|
||||
{{ endfor }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
</div>
|
||||
<div class="clear"></div>-->#}
|
93
view/theme/decaf-mobile/contact_edit.tpl
Normal file
|
@ -0,0 +1,93 @@
|
|||
|
||||
<h2>$header</h2>
|
||||
|
||||
<div id="contact-edit-wrapper" >
|
||||
|
||||
$tab_str
|
||||
|
||||
<div id="contact-edit-drop-link-wrapper" >
|
||||
<a href="contacts/$contact_id/drop?confirm=1" class="icon drophide" id="contact-edit-drop-link" onclick="id=this.id;return confirmDelete(function(){changeHref(id, 'contacts/$contact_id/drop')});" title="$delete" {#onmouseover="imgbright(this);" onmouseout="imgdull(this);"#}></a>
|
||||
</div>
|
||||
|
||||
<div id="contact-edit-drop-link-end"></div>
|
||||
|
||||
<div class="vcard">
|
||||
<div class="fn">$name</div>
|
||||
<div id="profile-photo-wrapper"><img class="photo" style="width: 175px; height: 175px;" src="$photo" alt="$name" /></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="contact-edit-nav-wrapper" >
|
||||
<div id="contact-edit-links">
|
||||
<ul>
|
||||
<li><div id="contact-edit-rel">$relation_text</div></li>
|
||||
<li><div id="contact-edit-nettype">$nettype</div></li>
|
||||
{{ if $lost_contact }}
|
||||
<li><div id="lost-contact-message">$lost_contact</div></li>
|
||||
{{ endif }}
|
||||
{{ if $insecure }}
|
||||
<li><div id="insecure-message">$insecure</div></li>
|
||||
{{ endif }}
|
||||
{{ if $blocked }}
|
||||
<li><div id="block-message">$blocked</div></li>
|
||||
{{ endif }}
|
||||
{{ if $ignored }}
|
||||
<li><div id="ignore-message">$ignored</div></li>
|
||||
{{ endif }}
|
||||
{{ if $archived }}
|
||||
<li><div id="archive-message">$archived</div></li>
|
||||
{{ endif }}
|
||||
|
||||
<li> </li>
|
||||
|
||||
{{ if $common_text }}
|
||||
<li><div id="contact-edit-common"><a href="$common_link">$common_text</a></div></li>
|
||||
{{ endif }}
|
||||
{{ if $all_friends }}
|
||||
<li><div id="contact-edit-allfriends"><a href="allfriends/$contact_id">$all_friends</a></div></li>
|
||||
{{ endif }}
|
||||
|
||||
|
||||
<li><a href="network/0?nets=all&cid=$contact_id" id="contact-edit-view-recent">$lblrecent</a></li>
|
||||
{{ if $lblsuggest }}
|
||||
<li><a href="fsuggest/$contact_id" id="contact-edit-suggest">$lblsuggest</a></li>
|
||||
{{ endif }}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="contact-edit-nav-end"></div>
|
||||
|
||||
|
||||
<form action="contacts/$contact_id" method="post" >
|
||||
<input type="hidden" name="contact_id" value="$contact_id">
|
||||
|
||||
{{ if $poll_enabled }}
|
||||
<div id="contact-edit-poll-wrapper">
|
||||
<div id="contact-edit-last-update-text">$lastupdtext <span id="contact-edit-last-updated">$last_update</span></div>
|
||||
<span id="contact-edit-poll-text">$updpub $poll_interval</span> <span id="contact-edit-update-now" class="button"><a id="update_now_link" href="contacts/$contact_id/update" >$udnow</a></span>
|
||||
</div>
|
||||
{{ endif }}
|
||||
<div id="contact-edit-end" ></div>
|
||||
|
||||
{{inc field_checkbox.tpl with $field=$hidden }}{{endinc}}
|
||||
|
||||
<div id="contact-edit-info-wrapper">
|
||||
<h4>$lbl_info1</h4>
|
||||
<textarea id="contact-edit-info" rows="8"{# cols="35"#} name="info">$info</textarea>
|
||||
<input class="contact-edit-submit" type="submit" name="submit" value="$submit" />
|
||||
</div>
|
||||
<div id="contact-edit-info-end"></div>
|
||||
|
||||
|
||||
<div id="contact-edit-profile-select-text">
|
||||
<h4>$lbl_vis1</h4>
|
||||
<p>$lbl_vis2</p>
|
||||
</div>
|
||||
$profile_select
|
||||
<div id="contact-edit-profile-select-end"></div>
|
||||
|
||||
<input class="contact-edit-submit" type="submit" name="submit" value="$submit" />
|
||||
|
||||
</form>
|
||||
</div>
|
0
view/theme/decaf-mobile/contact_head.tpl
Normal file
38
view/theme/decaf-mobile/contact_template.tpl
Normal file
|
@ -0,0 +1,38 @@
|
|||
|
||||
<div class="contact-entry-wrapper" id="contact-entry-wrapper-$contact.id" >
|
||||
<div class="contact-entry-photo-wrapper" >
|
||||
<div class="contact-entry-photo mframe" id="contact-entry-photo-$contact.id"
|
||||
{#onmouseover="if (typeof t$contact.id != 'undefined') clearTimeout(t$contact.id);"
|
||||
onmouseout="t$contact.id=setTimeout('closeMenu(\'contact-photo-menu-$contact.id\');',200)"#} >
|
||||
|
||||
{#<!-- <a href="$contact.url" title="$contact.img_hover" /><img src="$contact.thumb" $contact.sparkle alt="$contact.name" /></a>-->#}
|
||||
{#<!--<span onclick="openClose('contact-photo-menu-$contact.id');" class="fakelink contact-photo-menu-button" id="contact-photo-menu-button-$contact.id">-->#}
|
||||
<a href="$contact.photo_menu.edit.1" title="$contact.photo_menu.edit.0">
|
||||
<img src="$contact.thumb" $contact.sparkle alt="$contact.name" />
|
||||
</a>
|
||||
{#<!--</span>-->#}
|
||||
|
||||
{#<!-- {{ if $contact.photo_menu }}
|
||||
<span onclick="openClose('contact-photo-menu-$contact.id');" class="fakelink contact-photo-menu-button" id="contact-photo-menu-button-$contact.id">menu</span>
|
||||
<div class="contact-photo-menu" id="contact-photo-menu-$contact.id">
|
||||
<ul>
|
||||
{{ for $contact.photo_menu as $c }}
|
||||
{{ if $c.2 }}
|
||||
<li><a target="redir" href="$c.1">$c.0</a></li>
|
||||
{{ else }}
|
||||
<li><a href="$c.1">$c.0</a></li>
|
||||
{{ endif }}
|
||||
{{ endfor }}
|
||||
</ul>
|
||||
</div>
|
||||
{{ endif }}-->#}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="contact-entry-photo-end" ></div>
|
||||
<div class="contact-entry-name" id="contact-entry-name-$contact.id" >$contact.name</div><br />
|
||||
{{ if $contact.alt_text }}<div class="contact-entry-details" id="contact-entry-rel-$contact.id" >$contact.alt_text</div>{{ endif }}
|
||||
<div class="contact-entry-network" id="contact-entry-network-$contact.id" >$contact.network</div>
|
||||
|
||||
<div class="contact-entry-end" ></div>
|
||||
</div>
|
4
view/theme/decaf-mobile/contacts-end.tpl
Normal file
|
@ -0,0 +1,4 @@
|
|||
{#<!--
|
||||
<script src="$baseurl/library/jquery_ac/friendica.complete.min.js" ></script>
|
||||
|
||||
-->#}
|
5
view/theme/decaf-mobile/contacts-head.tpl
Normal file
|
@ -0,0 +1,5 @@
|
|||
{#<!--
|
||||
<script>
|
||||
window.autocompleteType = 'contacts-head';
|
||||
</script>
|
||||
-->#}
|
28
view/theme/decaf-mobile/contacts-template.tpl
Normal file
|
@ -0,0 +1,28 @@
|
|||
<h1>$header{{ if $total }} ($total){{ endif }}</h1>
|
||||
|
||||
{{ if $finding }}<h4>$finding</h4>{{ endif }}
|
||||
|
||||
<div id="contacts-search-wrapper">
|
||||
<form id="contacts-search-form" action="$cmd" method="get" >
|
||||
<span class="contacts-search-desc">$desc</span>
|
||||
<input type="text" name="search" id="contacts-search" class="search-input" onfocus="this.select();" value="$search" />
|
||||
<input type="submit" name="submit" id="contacts-search-submit" value="$submit" />
|
||||
</form>
|
||||
</div>
|
||||
<div id="contacts-search-end"></div>
|
||||
|
||||
$tabs
|
||||
|
||||
|
||||
<div id="contacts-display-wrapper">
|
||||
{{ for $contacts as $contact }}
|
||||
{{ inc contact_template.tpl }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
</div>
|
||||
<div id="contact-edit-end"></div>
|
||||
|
||||
$paginate
|
||||
|
||||
|
||||
|
||||
|
2
view/theme/decaf-mobile/contacts-widget-sidebar.tpl
Normal file
|
@ -0,0 +1,2 @@
|
|||
$follow_widget
|
||||
|
29
view/theme/decaf-mobile/conversation.tpl
Normal file
|
@ -0,0 +1,29 @@
|
|||
$live_update
|
||||
|
||||
{{ for $threads as $thread }}
|
||||
<div id="tread-wrapper-$thread.id" class="tread-wrapper">
|
||||
{{ for $thread.items as $item }}
|
||||
{{if $item.comment_firstcollapsed}}
|
||||
<div class="hide-comments-outer">
|
||||
<span id="hide-comments-total-$thread.id" class="hide-comments-total">$thread.num_comments</span> <span id="hide-comments-$thread.id" class="hide-comments fakelink" onclick="showHideComments($thread.id);">$thread.hide_text</span>
|
||||
</div>
|
||||
<div id="collapsed-comments-$thread.id" class="collapsed-comments" style="display: none;">
|
||||
{{endif}}
|
||||
{{if $item.comment_lastcollapsed}}</div>{{endif}}
|
||||
|
||||
{{ inc $item.template }}{{ endinc }}
|
||||
|
||||
|
||||
{{ endfor }}
|
||||
</div>
|
||||
{{ endfor }}
|
||||
|
||||
<div id="conversation-end"></div>
|
||||
|
||||
{#<!--{{ if $dropping }}
|
||||
<div id="item-delete-selected" class="fakelink" onclick="deleteCheckedItems();">
|
||||
<div id="item-delete-selected-icon" class="icon drophide" title="$dropping" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></div>
|
||||
<div id="item-delete-selected-desc" >$dropping</div>
|
||||
</div>
|
||||
<div id="item-delete-selected-end"></div>
|
||||
{{ endif }}-->#}
|
27
view/theme/decaf-mobile/cropbody.tpl
Normal file
|
@ -0,0 +1,27 @@
|
|||
<h1>$title</h1>
|
||||
<p id="cropimage-desc">
|
||||
$desc
|
||||
</p>
|
||||
<div id="cropimage-wrapper">
|
||||
<img src="$image_url" id="croppa" class="imgCrop" alt="$title" />
|
||||
</div>
|
||||
<div id="cropimage-preview-wrapper" >
|
||||
<div id="previewWrap" ></div>
|
||||
</div>
|
||||
|
||||
<form action="profile_photo/$resource" id="crop-image-form" method="post" />
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
|
||||
<input type="hidden" name="cropfinal" value="1" />
|
||||
<input type="hidden" name="xstart" id="x1" />
|
||||
<input type="hidden" name="ystart" id="y1" />
|
||||
<input type="hidden" name="xfinal" id="x2" />
|
||||
<input type="hidden" name="yfinal" id="y2" />
|
||||
<input type="hidden" name="height" id="height" />
|
||||
<input type="hidden" name="width" id="width" />
|
||||
|
||||
<div id="crop-image-submit-wrapper" >
|
||||
<input type="submit" name="submit" value="$done" />
|
||||
</div>
|
||||
|
||||
</form>
|
4
view/theme/decaf-mobile/cropend.tpl
Normal file
|
@ -0,0 +1,4 @@
|
|||
{#<!-- <script type="text/javascript" src="library/cropper/lib/prototype.js" language="javascript"></script>
|
||||
<script type="text/javascript" src="library/cropper/lib/scriptaculous.js?load=effects,builder,dragdrop" language="javascript"></script>
|
||||
<script type="text/javascript" src="library/cropper/cropper.js" language="javascript"></script>
|
||||
<script type="text/javascript" language="javascript">initCrop();</script>-->#}
|
1
view/theme/decaf-mobile/crophead.tpl
Normal file
|
@ -0,0 +1 @@
|
|||
<link rel="stylesheet" href="library/cropper/cropper.css" type="text/css" />
|
44
view/theme/decaf-mobile/default.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<!DOCTYPE html >
|
||||
<html>
|
||||
<head>
|
||||
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
||||
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
|
||||
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
|
||||
</head>
|
||||
<body <?php if($a->module === 'home') echo 'onLoad="setTimeout(\'homeRedirect()\', 1500)"'?>>
|
||||
<?php if(x($page,'nav')) echo $page['nav']; ?>
|
||||
|
||||
<?php if( $a->module === 'home' ) { ?>
|
||||
<center>
|
||||
<div class="login-button">
|
||||
<a href="login" class="login-button-link"><img class="login-button-image" src="images/friendica-1600.png" title="Click to log in"></a>
|
||||
</div>
|
||||
</center>
|
||||
|
||||
<?php } elseif ( $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {
|
||||
?>
|
||||
<div class='section-wrapper'>
|
||||
<section><?php if(x($page,'content')) echo $page['content']; ?>
|
||||
</section>
|
||||
</div>
|
||||
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
|
||||
|
||||
<?php } else { ?>
|
||||
<div class='main-container'>
|
||||
<!-- <div class='main-content-container'>-->
|
||||
<div class='section-wrapper'>
|
||||
<?php if( ($a->module === 'settings' || $a->module === 'message' || $a->module === 'profile') && x($page,'aside')) echo $page['aside']; ?>
|
||||
<section><?php if(x($page,'content')) echo $page['content']; ?>
|
||||
<div id="page-footer"></div>
|
||||
</section>
|
||||
</div>
|
||||
<right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
|
||||
<?php if( ($a->module === 'contacts') && x($page,'aside')) echo $page['aside']; ?>
|
||||
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
|
||||
<!-- </div>-->
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php if(x($page,'end')) echo $page['end']; ?>
|
||||
</body>
|
||||
</html>
|
||||
|
4
view/theme/decaf-mobile/display-head.tpl
Normal file
|
@ -0,0 +1,4 @@
|
|||
{#<!--<script>
|
||||
window.autoCompleteType = 'display-head';
|
||||
</script>
|
||||
-->#}
|
BIN
view/theme/decaf-mobile/editicons.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
25
view/theme/decaf-mobile/end.tpl
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!--[if IE]>
|
||||
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce.js" ></script>
|
||||
<script type="text/javascript">
|
||||
tinyMCE.init({ mode : "none"});
|
||||
</script>-->#}
|
||||
{#<!--<script type="text/javascript" src="$baseurl/js/jquery.js" ></script>
|
||||
<script type="text/javascript">var $j = jQuery.noConflict();</script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/decaf-mobile/js/jquery.divgrow-1.3.1.f1.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/jquery.textinputs.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/decaf-mobile/js/fk.autocomplete.js" ></script>-->#}
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/colorbox/jquery.colorbox-min.js"></script>-->#}
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/tiptip/jquery.tipTip.minified.js"></script>-->#}
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/decaf-mobile/js/acl.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/webtoolkit.base64.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/decaf-mobile/js/main.js" ></script>-->#}
|
||||
<script type="text/javascript" src="$baseurl/view/theme/decaf-mobile/js/theme.js"></script>
|
||||
|
||||
<!--<script type="text/javascript" src="$baseurl/view/theme/decaf-mobile/js/jquery.package.js" ></script>
|
||||
<script type="text/javascript">var $j = jQuery.noConflict();</script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/decaf-mobile/js/decaf-mobile.package.js" ></script>-->
|
||||
|
4
view/theme/decaf-mobile/event_end.tpl
Normal file
|
@ -0,0 +1,4 @@
|
|||
{#<!--<script language="javascript" type="text/javascript"
|
||||
src="$baseurl/library/fullcalendar/fullcalendar.min.js"></script>
|
||||
|
||||
-->#}
|
6
view/theme/decaf-mobile/event_head.tpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
<link rel='stylesheet' type='text/css' href='$baseurl/library/fullcalendar/fullcalendar.css' />
|
||||
{#<!--
|
||||
<script language="javascript" type="text/javascript">
|
||||
window.aclType = 'event_head';
|
||||
</script>
|
||||
-->#}
|
0
view/theme/decaf-mobile/experimental
Normal file
6
view/theme/decaf-mobile/field_checkbox.tpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
<div class='field checkbox' id='div_id_$field.0'>
|
||||
<label id='label_id_$field.0' for='id_$field.0'>$field.1</label>
|
||||
<input type="checkbox" name='$field.0' id='id_$field.0' value="1" {{ if $field.2 }}checked="checked"{{ endif }}><br />
|
||||
<span class='field_help' id='help_id_$field.0'>$field.3</span>
|
||||
</div>
|
6
view/theme/decaf-mobile/field_input.tpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
<div class='field input' id='wrapper_$field.0'>
|
||||
<label for='id_$field.0'>$field.1</label><br />
|
||||
<input name='$field.0' id='id_$field.0' value="$field.2">
|
||||
<span class='field_help'>$field.3</span>
|
||||
</div>
|
6
view/theme/decaf-mobile/field_openid.tpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
<div class='field input openid' id='wrapper_$field.0'>
|
||||
<label for='id_$field.0'>$field.1</label><br />
|
||||
<input name='$field.0' id='id_$field.0' value="$field.2">
|
||||
<span class='field_help'>$field.3</span>
|
||||
</div>
|
6
view/theme/decaf-mobile/field_password.tpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
<div class='field password' id='wrapper_$field.0'>
|
||||
<label for='id_$field.0'>$field.1</label><br />
|
||||
<input type='password' name='$field.0' id='id_$field.0' value="$field.2">
|
||||
<span class='field_help'>$field.3</span>
|
||||
</div>
|
9
view/theme/decaf-mobile/field_themeselect.tpl
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
<div class='field select'>
|
||||
<label for='id_$field.0'>$field.1</label>
|
||||
<select name='$field.0' id='id_$field.0' {#{{ if $field.5 }}onchange="previewTheme(this);"{{ endif }}#} >
|
||||
{{ for $field.4 as $opt=>$val }}<option value="$opt" {{ if $opt==$field.2 }}selected="selected"{{ endif }}>$val</option>{{ endfor }}
|
||||
</select>
|
||||
<span class='field_help'>$field.3</span>
|
||||
<div id="theme-preview"></div>
|
||||
</div>
|
14
view/theme/decaf-mobile/field_yesno.tpl
Normal file
|
@ -0,0 +1,14 @@
|
|||
{#<!-- <div class='field yesno'>
|
||||
<label for='id_$field.0'>$field.1</label>
|
||||
<div class='onoff' id="id_$field.0_onoff">
|
||||
<input type="hidden" name='$field.0' id='id_$field.0' value="$field.2">
|
||||
<a href="#" class='off'>
|
||||
{{ if $field.4 }}$field.4.0{{ else }}OFF{{ endif }}
|
||||
</a>
|
||||
<a href="#" class='on'>
|
||||
{{ if $field.4 }}$field.4.1{{ else }}ON{{ endif }}
|
||||
</a>
|
||||
</div>
|
||||
<span class='field_help'>$field.3</span>
|
||||
</div>-->#}
|
||||
{{ inc field_checkbox.tpl }}{{ endinc }}
|
BIN
view/theme/decaf-mobile/file.gif
Normal file
After Width: | Height: | Size: 615 B |
BIN
view/theme/decaf-mobile/friendica-16.png
Normal file
After Width: | Height: | Size: 699 B |
12
view/theme/decaf-mobile/generic_links_widget.tpl
Normal file
|
@ -0,0 +1,12 @@
|
|||
<div class="widget{{ if $class }} $class{{ endif }}">
|
||||
{#<!-- {{if $title}}<h3>$title</h3>{{endif}}-->#}
|
||||
{{if $desc}}<div class="desc">$desc</div>{{endif}}
|
||||
|
||||
<ul class="tabs links-widget">
|
||||
{{ for $items as $item }}
|
||||
<li class="tool"><a href="$item.url" class="tab {{ if $item.selected }}selected{{ endif }}">$item.label</a></li>
|
||||
{{ endfor }}
|
||||
<div id="tabs-end"></div>
|
||||
</ul>
|
||||
|
||||
</div>
|
9
view/theme/decaf-mobile/group_drop.tpl
Normal file
|
@ -0,0 +1,9 @@
|
|||
<div class="group-delete-wrapper button" id="group-delete-wrapper-$id" >
|
||||
<a href="group/drop/$id?t=$form_security_token"
|
||||
onclick="return confirmDelete();"
|
||||
id="group-delete-icon-$id"
|
||||
class="icon drophide group-delete-icon"
|
||||
{#onmouseover="imgbright(this);"
|
||||
onmouseout="imgdull(this);"#} ></a>
|
||||
</div>
|
||||
<div class="group-delete-end"></div>
|
33
view/theme/decaf-mobile/group_side.tpl
Normal file
|
@ -0,0 +1,33 @@
|
|||
<div class="widget" id="group-sidebar">
|
||||
<h3>$title</h3>
|
||||
|
||||
<div id="sidebar-group-list">
|
||||
<ul id="sidebar-group-ul">
|
||||
{{ for $groups as $group }}
|
||||
<li class="sidebar-group-li">
|
||||
{{ if $group.cid }}
|
||||
<input type="checkbox"
|
||||
class="{{ if $group.selected }}ticked{{ else }}unticked {{ endif }} action"
|
||||
{#onclick="contactgroupChangeMember('$group.id','$group.cid');return true;"#}
|
||||
{{ if $group.ismember }}checked="checked"{{ endif }}
|
||||
/>
|
||||
{{ endif }}
|
||||
{{ if $group.edit }}
|
||||
<a class="groupsideedit" href="$group.edit.href" title="$edittext"><span id="edit-sidebar-group-element-$group.id" class="group-edit-icon iconspacer small-pencil"></span></a>
|
||||
{{ endif }}
|
||||
<a id="sidebar-group-element-$group.id" class="sidebar-group-element {{ if $group.selected }}group-selected{{ endif }}" href="$group.href">$group.text</a>
|
||||
</li>
|
||||
{{ endfor }}
|
||||
</ul>
|
||||
</div>
|
||||
<div id="sidebar-new-group">
|
||||
<a href="group/new">$createtext</a>
|
||||
</div>
|
||||
{{ if $ungrouped }}
|
||||
<div id="sidebar-ungrouped">
|
||||
<a href="nogroup">$ungrouped</a>
|
||||
</div>
|
||||
{{ endif }}
|
||||
</div>
|
||||
|
||||
|
BIN
view/theme/decaf-mobile/head.jpg
Normal file
After Width: | Height: | Size: 383 B |
30
view/theme/decaf-mobile/head.tpl
Normal file
|
@ -0,0 +1,30 @@
|
|||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
{#<!--<meta content='width=device-width, minimum-scale=1 maximum-scale=1' name='viewport'>
|
||||
<meta content='True' name='HandheldFriendly'>
|
||||
<meta content='320' name='MobileOptimized'>-->#}
|
||||
<meta name="viewport" content="width=device-width; initial-scale = 1.0; maximum-scale=1.0; user-scalable=no" />
|
||||
{#<!--<meta name="viewport" content="width=100%; initial-scale=1; maximum-scale=1; minimum-scale=1; user-scalable=no;" />-->#}
|
||||
|
||||
<base href="$baseurl/" />
|
||||
<meta name="generator" content="$generator" />
|
||||
{#<!--<link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/colorbox/colorbox.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/tiptip/tipTip.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />-->#}
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="$stylesheet" media="all" />
|
||||
|
||||
<link rel="shortcut icon" href="$baseurl/images/friendica-32.png" />
|
||||
<link rel="search"
|
||||
href="$baseurl/opensearch"
|
||||
type="application/opensearchdescription+xml"
|
||||
title="Search in Friendica" />
|
||||
|
||||
<script>
|
||||
window.delItem = "$delitem";
|
||||
{#/* window.commentEmptyText = "$comment";
|
||||
window.showMore = "$showmore";
|
||||
window.showFewer = "$showfewer";
|
||||
var updateInterval = $update_interval;
|
||||
var localUser = {{ if $local_user }}$local_user{{ else }}false{{ endif }};*/#}
|
||||
</script>
|
BIN
view/theme/decaf-mobile/images/approve-blue.png
Normal file
After Width: | Height: | Size: 562 B |
BIN
view/theme/decaf-mobile/images/approve.png
Normal file
After Width: | Height: | Size: 475 B |
BIN
view/theme/decaf-mobile/images/arrow-left.png
Normal file
After Width: | Height: | Size: 282 B |
BIN
view/theme/decaf-mobile/images/arrow-right.png
Normal file
After Width: | Height: | Size: 306 B |
BIN
view/theme/decaf-mobile/images/boldB-serif.png
Normal file
After Width: | Height: | Size: 574 B |
BIN
view/theme/decaf-mobile/images/camera.png
Normal file
After Width: | Height: | Size: 530 B |
BIN
view/theme/decaf-mobile/images/code.png
Normal file
After Width: | Height: | Size: 488 B |
BIN
view/theme/decaf-mobile/images/contacts.png
Normal file
After Width: | Height: | Size: 813 B |