From 637cfdd7cba9da846d652be9310ab79db8f343dc Mon Sep 17 00:00:00 2001 From: pixelroot Date: Fri, 11 Jan 2013 10:56:14 +0100 Subject: [PATCH 1/9] modified: view/theme/smoothly/css/typography.css modified: view/theme/smoothly/style.css modified: view/theme/smoothly/theme.php --- view/theme/smoothly/css/typography.css | 8 +++++--- view/theme/smoothly/style.css | 2 +- view/theme/smoothly/theme.php | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/view/theme/smoothly/css/typography.css b/view/theme/smoothly/css/typography.css index dce4657bf3..d62a66883c 100644 --- a/view/theme/smoothly/css/typography.css +++ b/view/theme/smoothly/css/typography.css @@ -145,9 +145,11 @@ blockquote, cite, q { } blockquote { - background-color: #F4F8F9; - border-left: 4px solid #DAE4EE; - padding: 0.4em; + background-color: #F4F8F9; + border-left: 4px solid #DAE4EE; + margin: 0; + padding: 0.4em; + white-space: normal; } strong, b { font-weight:bold; } diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index c560dcc772..41fd0c9075 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -2,7 +2,7 @@ style.css Smoothly - Created by alex@friendica.pixelbits.de on 2013-01-01 + Created by alex@friendica.pixelbits.de on 2013-01-11 ** Colors ** Blue links - #1873a2 diff --git a/view/theme/smoothly/theme.php b/view/theme/smoothly/theme.php index feaf98d363..16a33d678c 100644 --- a/view/theme/smoothly/theme.php +++ b/view/theme/smoothly/theme.php @@ -3,7 +3,7 @@ /* * Name: Smoothly * Description: Like coffee with milk. Theme optimized for iPad[2]. - * Version: Version 0.131 + * Version: Version 0.132 * Author: Alex * Maintainer: Alex * Screenshot: Screenshot From a543a1a0c228e92d7fdf72422962ff451d39e1ea Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 11 Jan 2013 14:15:17 +0100 Subject: [PATCH 2/9] typo correction we don't want to drop Hilde --- view/theme/vier/css/font2.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/vier/css/font2.css b/view/theme/vier/css/font2.css index 1ba1848b9f..2357af604b 100644 --- a/view/theme/vier/css/font2.css +++ b/view/theme/vier/css/font2.css @@ -324,7 +324,7 @@ li.icon.icon-large:before { .icon.type.unkn:before { content: "\f059"; } .icon.drop:before { content: "\f014"; } -.icon.drophilde:before { content: "\f014"; } +.icon.drophide:before { content: "\f014"; } .small-pencil:before, .savedsearchdrop:before { font-family: FontAwesome; From f24d460522f5dd99eb86aefaeff63715c0536a47 Mon Sep 17 00:00:00 2001 From: Zach Prezkuta Date: Fri, 11 Jan 2013 09:41:45 -0700 Subject: [PATCH 3/9] automatic, command-line conversion --- mods/friendica-to-smarty-tpl.py | 35 +++++++++++++- mods/updatetpl.py | 64 ++++++++++++++++++++++++++ view/de/smarty3/request_notify_eml.tpl | 2 +- 3 files changed, 98 insertions(+), 3 deletions(-) create mode 100755 mods/updatetpl.py diff --git a/mods/friendica-to-smarty-tpl.py b/mods/friendica-to-smarty-tpl.py index ff1a102a44..369b8ea9a8 100755 --- a/mods/friendica-to-smarty-tpl.py +++ b/mods/friendica-to-smarty-tpl.py @@ -1,10 +1,11 @@ #!/usr/bin/python # # Script to convert Friendica internal template files into Smarty template files -# Copyright 2012 Zach Prezkuta +# Copyright 2013 Zach Prezkuta # Licensed under GPL v3 import os, re, string +import sys, getopt ldelim = '{{' rdelim = '}}' @@ -170,7 +171,37 @@ def convert(filename, tofilename, php_tpl): tofilename.write(newline) -path = raw_input('Path to template folder to convert: ') +def help(pname): + print "\nUsage:" + print "\t" + pname + " -h\n\n\t\t\tShow this help screen\n" + print "\t" + pname + " -p directory\n\n\t\t\tConvert all .tpl files in directory to\n\t\t\tSmarty templates in directory/smarty3/\n" + print "\t" + pname + "\n\n\t\t\tInteractive mode\n" + + + + +# +# Main script +# + +path = '' + +try: + opts, args = getopt.getopt(sys.argv[1:], "hp:") + for opt, arg in opts: + if opt == '-h': + help(sys.argv[0]) + sys.exit() + elif opt == '-p': + path = arg +except getopt.GetoptError: + help(sys.argv[0]) + sys.exit(2) + + +if path == '': + path = raw_input('Path to template folder to convert: ') + if path[-1:] != '/': path = path + '/' diff --git a/mods/updatetpl.py b/mods/updatetpl.py new file mode 100755 index 0000000000..aa815910c2 --- /dev/null +++ b/mods/updatetpl.py @@ -0,0 +1,64 @@ +#!/usr/bin/python +# +# Script to update Smarty template files from all internal templates +# Copyright 2013 Zach Prezkuta +# Licensed under GPL v3 + + +import os +import sys, getopt +import subprocess + + +def help(pname): + print "\nUsage:" + print "\t" + pname + " -h\n\n\t\t\tShow this help screen\n" + print "\t" + pname + " -p directory\n\n\t\t\tConvert all .tpl files in top-level\n\t\t\tFriendica directory to Smarty templates\n" + print "\t" + pname + "\n\n\t\t\tInteractive mode\n" + + + +# +# Main script +# + +path = '' + +try: + opts, args = getopt.getopt(sys.argv[1:], "hp:") + for opt, arg in opts: + if opt == '-h': + help(sys.argv[0]) + sys.exit() + elif opt == '-p': + path = arg +except getopt.GetoptError: + help(sys.argv[0]) + sys.exit(2) + +if path == '': + path = raw_input('Path to top-level Friendica directory: ') + +if path[-1:] != '/': + path = path + '/' + +tplpaths = ['view/'] +names = os.listdir(path + 'view/') +for name in names: + if os.path.isdir(path + 'view/' + name): + if name != 'smarty3' and name != 'theme': + tplpaths.append('view/' + name + '/') + +names = os.listdir(path + 'view/theme/') +for name in names: + if os.path.isdir(path + 'view/theme/' + name): + tplpaths.append('view/theme/' + name + '/') + +fnull = open(os.devnull, "w") + +for tplpath in tplpaths: + print "Converting " + path + tplpath + subprocess.call(['python', path + 'mods/friendica-to-smarty-tpl.py', '-p', path + tplpath], stdout = fnull) + +fnull.close() + diff --git a/view/de/smarty3/request_notify_eml.tpl b/view/de/smarty3/request_notify_eml.tpl index de2182e9db..7493935e9b 100644 --- a/view/de/smarty3/request_notify_eml.tpl +++ b/view/de/smarty3/request_notify_eml.tpl @@ -7,7 +7,7 @@ erhalten. Du kannst sein/ihr Profil unter {{$url}} finden. -Bitte melde dich an um die komplette Vorstellung einzusehen +Bitte melde dich an um die komplette Anfrage einzusehen und die Anfrage zu bestätigen oder zu ignorieren oder abzulehnen. {{$siteurl}} From 1656c63a55209ec6b1d7b69d6f1fcf43a97f4770 Mon Sep 17 00:00:00 2001 From: Zach Prezkuta Date: Fri, 11 Jan 2013 09:57:11 -0700 Subject: [PATCH 4/9] add warning message about automatically generated templates --- mods/friendica-to-smarty-tpl.py | 3 +++ view/ca/smarty3/cmnt_received_eml.tpl | 6 +++++- view/ca/smarty3/follow_notify_eml.tpl | 6 +++++- view/ca/smarty3/friend_complete_eml.tpl | 6 +++++- view/ca/smarty3/htconfig.tpl | 6 +++++- view/ca/smarty3/intro_complete_eml.tpl | 6 +++++- view/ca/smarty3/lostpass_eml.tpl | 6 +++++- view/ca/smarty3/mail_received_html_body_eml.tpl | 6 +++++- view/ca/smarty3/mail_received_text_body_eml.tpl | 6 +++++- view/ca/smarty3/passchanged_eml.tpl | 6 +++++- view/ca/smarty3/register_open_eml.tpl | 6 +++++- view/ca/smarty3/register_verify_eml.tpl | 6 +++++- view/ca/smarty3/request_notify_eml.tpl | 6 +++++- view/ca/smarty3/wall_received_eml.tpl | 6 +++++- view/cs/smarty3/cmnt_received_eml.tpl | 6 +++++- view/cs/smarty3/cmnt_received_html_body_eml.tpl | 6 +++++- view/cs/smarty3/cmnt_received_text_body_eml.tpl | 6 +++++- view/cs/smarty3/follow_notify_eml.tpl | 6 +++++- view/cs/smarty3/friend_complete_eml.tpl | 6 +++++- view/cs/smarty3/htconfig.tpl | 6 +++++- view/cs/smarty3/intro_complete_eml.tpl | 6 +++++- view/cs/smarty3/lostpass_eml.tpl | 6 +++++- view/cs/smarty3/mail_received_html_body_eml.tpl | 6 +++++- view/cs/smarty3/mail_received_text_body_eml.tpl | 6 +++++- view/cs/smarty3/passchanged_eml.tpl | 6 +++++- view/cs/smarty3/register_open_eml.tpl | 6 +++++- view/cs/smarty3/register_verify_eml.tpl | 6 +++++- view/cs/smarty3/request_notify_eml.tpl | 6 +++++- view/cs/smarty3/wall_received_eml.tpl | 6 +++++- view/cs/smarty3/wall_received_html_body_eml.tpl | 6 +++++- view/cs/smarty3/wall_received_text_body_eml.tpl | 6 +++++- view/de/smarty3/cmnt_received_eml.tpl | 6 +++++- view/de/smarty3/cmnt_received_html_body_eml.tpl | 6 +++++- view/de/smarty3/cmnt_received_text_body_eml.tpl | 6 +++++- view/de/smarty3/follow_notify_eml.tpl | 6 +++++- view/de/smarty3/friend_complete_eml.tpl | 6 +++++- view/de/smarty3/htconfig.tpl | 6 +++++- view/de/smarty3/intro_complete_eml.tpl | 6 +++++- view/de/smarty3/lostpass_eml.tpl | 6 +++++- view/de/smarty3/mail_received_html_body_eml.tpl | 6 +++++- view/de/smarty3/mail_received_text_body_eml.tpl | 6 +++++- view/de/smarty3/passchanged_eml.tpl | 6 +++++- view/de/smarty3/register_open_eml.tpl | 6 +++++- view/de/smarty3/register_verify_eml.tpl | 6 +++++- view/de/smarty3/request_notify_eml.tpl | 6 +++++- view/de/smarty3/update_fail_eml.tpl | 6 +++++- view/de/smarty3/wall_received_eml.tpl | 6 +++++- view/de/smarty3/wall_received_html_body_eml.tpl | 6 +++++- view/de/smarty3/wall_received_text_body_eml.tpl | 6 +++++- view/en/smarty3/follow_notify_eml.tpl | 6 +++++- view/en/smarty3/friend_complete_eml.tpl | 6 +++++- view/en/smarty3/htconfig.tpl | 6 +++++- view/en/smarty3/intro_complete_eml.tpl | 6 +++++- view/en/smarty3/lostpass_eml.tpl | 6 +++++- view/en/smarty3/passchanged_eml.tpl | 6 +++++- view/en/smarty3/register_open_eml.tpl | 6 +++++- view/en/smarty3/register_verify_eml.tpl | 6 +++++- view/en/smarty3/request_notify_eml.tpl | 6 +++++- view/en/smarty3/update_fail_eml.tpl | 6 +++++- view/eo/smarty3/follow_notify_eml.tpl | 6 +++++- view/eo/smarty3/friend_complete_eml.tpl | 6 +++++- view/eo/smarty3/intro_complete_eml.tpl | 6 +++++- view/eo/smarty3/lostpass_eml.tpl | 6 +++++- view/eo/smarty3/passchanged_eml.tpl | 6 +++++- view/eo/smarty3/register_open_eml.tpl | 6 +++++- view/eo/smarty3/register_verify_eml.tpl | 6 +++++- view/eo/smarty3/request_notify_eml.tpl | 6 +++++- view/eo/smarty3/update_fail_eml.tpl | 6 +++++- view/es/smarty3/cmnt_received_eml.tpl | 6 +++++- view/es/smarty3/follow_notify_eml.tpl | 6 +++++- view/es/smarty3/friend_complete_eml.tpl | 6 +++++- view/es/smarty3/htconfig.tpl | 6 +++++- view/es/smarty3/intro_complete_eml.tpl | 6 +++++- view/es/smarty3/lostpass_eml.tpl | 6 +++++- view/es/smarty3/mail_received_html_body_eml.tpl | 6 +++++- view/es/smarty3/mail_received_text_body_eml.tpl | 6 +++++- view/es/smarty3/passchanged_eml.tpl | 6 +++++- view/es/smarty3/register_open_eml.tpl | 6 +++++- view/es/smarty3/register_verify_eml.tpl | 6 +++++- view/es/smarty3/request_notify_eml.tpl | 6 +++++- view/es/smarty3/wall_received_eml.tpl | 6 +++++- view/fr/smarty3/cmnt_received_eml.tpl | 6 +++++- view/fr/smarty3/cmnt_received_html_body_eml.tpl | 6 +++++- view/fr/smarty3/cmnt_received_text_body_eml.tpl | 6 +++++- view/fr/smarty3/follow_notify_eml.tpl | 6 +++++- view/fr/smarty3/friend_complete_eml.tpl | 6 +++++- view/fr/smarty3/htconfig.tpl | 6 +++++- view/fr/smarty3/intro_complete_eml.tpl | 6 +++++- view/fr/smarty3/lostpass_eml.tpl | 6 +++++- view/fr/smarty3/mail_received_html_body_eml.tpl | 6 +++++- view/fr/smarty3/mail_received_text_body_eml.tpl | 6 +++++- view/fr/smarty3/passchanged_eml.tpl | 6 +++++- view/fr/smarty3/register_open_eml.tpl | 6 +++++- view/fr/smarty3/register_verify_eml.tpl | 6 +++++- view/fr/smarty3/request_notify_eml.tpl | 6 +++++- view/fr/smarty3/wall_received_eml.tpl | 6 +++++- view/is/smarty3/follow_notify_eml.tpl | 6 +++++- view/is/smarty3/friend_complete_eml.tpl | 6 +++++- view/is/smarty3/intro_complete_eml.tpl | 6 +++++- view/is/smarty3/lostpass_eml.tpl | 6 +++++- view/is/smarty3/passchanged_eml.tpl | 6 +++++- view/is/smarty3/register_open_eml.tpl | 6 +++++- view/is/smarty3/register_verify_eml.tpl | 6 +++++- view/is/smarty3/request_notify_eml.tpl | 6 +++++- view/is/smarty3/update_fail_eml.tpl | 6 +++++- view/it/smarty3/cmnt_received_eml.tpl | 6 +++++- view/it/smarty3/cmnt_received_html_body_eml.tpl | 6 +++++- view/it/smarty3/cmnt_received_text_body_eml.tpl | 6 +++++- view/it/smarty3/follow_notify_eml.tpl | 6 +++++- view/it/smarty3/friend_complete_eml.tpl | 6 +++++- view/it/smarty3/htconfig.tpl | 6 +++++- view/it/smarty3/intro_complete_eml.tpl | 6 +++++- view/it/smarty3/lostpass_eml.tpl | 6 +++++- view/it/smarty3/mail_received_html_body_eml.tpl | 6 +++++- view/it/smarty3/mail_received_text_body_eml.tpl | 6 +++++- view/it/smarty3/passchanged_eml.tpl | 6 +++++- view/it/smarty3/register_open_eml.tpl | 6 +++++- view/it/smarty3/register_verify_eml.tpl | 6 +++++- view/it/smarty3/request_notify_eml.tpl | 6 +++++- view/it/smarty3/wall_received_eml.tpl | 6 +++++- view/it/smarty3/wall_received_html_body_eml.tpl | 6 +++++- view/it/smarty3/wall_received_text_body_eml.tpl | 6 +++++- view/nb-no/smarty3/follow_notify_eml.tpl | 6 +++++- view/nb-no/smarty3/friend_complete_eml.tpl | 6 +++++- view/nb-no/smarty3/intro_complete_eml.tpl | 6 +++++- view/nb-no/smarty3/lostpass_eml.tpl | 6 +++++- view/nb-no/smarty3/passchanged_eml.tpl | 6 +++++- view/nb-no/smarty3/register_open_eml.tpl | 6 +++++- view/nb-no/smarty3/register_verify_eml.tpl | 6 +++++- view/nb-no/smarty3/request_notify_eml.tpl | 6 +++++- view/nb-no/smarty3/update_fail_eml.tpl | 6 +++++- view/pl/smarty3/follow_notify_eml.tpl | 6 +++++- view/pl/smarty3/friend_complete_eml.tpl | 6 +++++- view/pl/smarty3/intro_complete_eml.tpl | 6 +++++- view/pl/smarty3/lostpass_eml.tpl | 6 +++++- view/pl/smarty3/passchanged_eml.tpl | 6 +++++- view/pl/smarty3/register_open_eml.tpl | 6 +++++- view/pl/smarty3/register_verify_eml.tpl | 6 +++++- view/pl/smarty3/request_notify_eml.tpl | 6 +++++- view/pl/smarty3/update_fail_eml.tpl | 6 +++++- view/pt-br/smarty3/intro_complete_eml.tpl | 6 +++++- view/pt-br/smarty3/update_fail_eml.tpl | 6 +++++- view/smarty3/404.tpl | 6 +++++- view/smarty3/acl_selector.tpl | 6 +++++- view/smarty3/admin_aside.tpl | 6 +++++- view/smarty3/admin_logs.tpl | 6 +++++- view/smarty3/admin_plugins.tpl | 6 +++++- view/smarty3/admin_plugins_details.tpl | 6 +++++- view/smarty3/admin_remoteupdate.tpl | 6 +++++- view/smarty3/admin_site.tpl | 6 +++++- view/smarty3/admin_summary.tpl | 6 +++++- view/smarty3/admin_users.tpl | 6 +++++- view/smarty3/album_edit.tpl | 6 +++++- view/smarty3/api_config_xml.tpl | 6 +++++- view/smarty3/api_friends_xml.tpl | 6 +++++- view/smarty3/api_ratelimit_xml.tpl | 6 +++++- view/smarty3/api_status_xml.tpl | 6 +++++- view/smarty3/api_test_xml.tpl | 6 +++++- view/smarty3/api_timeline_atom.tpl | 6 +++++- view/smarty3/api_timeline_rss.tpl | 6 +++++- view/smarty3/api_timeline_xml.tpl | 6 +++++- view/smarty3/api_user_xml.tpl | 6 +++++- view/smarty3/apps.tpl | 6 +++++- view/smarty3/atom_feed.tpl | 6 +++++- view/smarty3/atom_feed_dfrn.tpl | 6 +++++- view/smarty3/atom_mail.tpl | 6 +++++- view/smarty3/atom_relocate.tpl | 6 +++++- view/smarty3/atom_suggest.tpl | 6 +++++- view/smarty3/auto_request.tpl | 6 +++++- view/smarty3/birthdays_reminder.tpl | 6 +++++- view/smarty3/categories_widget.tpl | 6 +++++- view/smarty3/comment_item.tpl | 6 +++++- view/smarty3/common_friends.tpl | 6 +++++- view/smarty3/common_tabs.tpl | 6 +++++- view/smarty3/contact_block.tpl | 6 +++++- view/smarty3/contact_edit.tpl | 6 +++++- view/smarty3/contact_end.tpl | 5 +++++ view/smarty3/contact_head.tpl | 6 +++++- view/smarty3/contact_template.tpl | 6 +++++- view/smarty3/contacts-end.tpl | 5 +++++ view/smarty3/contacts-head.tpl | 6 +++++- view/smarty3/contacts-template.tpl | 6 +++++- view/smarty3/contacts-widget-sidebar.tpl | 6 +++++- view/smarty3/content.tpl | 6 +++++- view/smarty3/conversation.tpl | 6 +++++- view/smarty3/crepair.tpl | 6 +++++- view/smarty3/cropbody.tpl | 6 +++++- view/smarty3/cropend.tpl | 5 +++++ view/smarty3/crophead.tpl | 6 +++++- view/smarty3/delegate.tpl | 6 +++++- view/smarty3/dfrn_req_confirm.tpl | 6 +++++- view/smarty3/dfrn_request.tpl | 6 +++++- view/smarty3/diasp_dec_hdr.tpl | 6 +++++- view/smarty3/diaspora_comment.tpl | 6 +++++- view/smarty3/diaspora_comment_relay.tpl | 6 +++++- view/smarty3/diaspora_conversation.tpl | 6 +++++- view/smarty3/diaspora_like.tpl | 6 +++++- view/smarty3/diaspora_like_relay.tpl | 6 +++++- view/smarty3/diaspora_message.tpl | 6 +++++- view/smarty3/diaspora_photo.tpl | 6 +++++- view/smarty3/diaspora_post.tpl | 6 +++++- view/smarty3/diaspora_profile.tpl | 6 +++++- view/smarty3/diaspora_relay_retraction.tpl | 6 +++++- view/smarty3/diaspora_relayable_retraction.tpl | 6 +++++- view/smarty3/diaspora_retract.tpl | 6 +++++- view/smarty3/diaspora_share.tpl | 6 +++++- view/smarty3/diaspora_signed_retract.tpl | 6 +++++- view/smarty3/diaspora_vcard.tpl | 6 +++++- view/smarty3/directory_header.tpl | 6 +++++- view/smarty3/directory_item.tpl | 6 +++++- view/smarty3/display-head.tpl | 6 +++++- view/smarty3/email_notify_html.tpl | 6 +++++- view/smarty3/email_notify_text.tpl | 6 +++++- view/smarty3/end.tpl | 5 +++++ view/smarty3/event.tpl | 6 +++++- view/smarty3/event_end.tpl | 5 +++++ view/smarty3/event_form.tpl | 6 +++++- view/smarty3/event_head.tpl | 6 +++++- view/smarty3/events-js.tpl | 6 +++++- view/smarty3/events.tpl | 6 +++++- view/smarty3/events_reminder.tpl | 6 +++++- view/smarty3/failed_updates.tpl | 6 +++++- view/smarty3/fake_feed.tpl | 6 +++++- view/smarty3/field.tpl | 6 +++++- view/smarty3/field_checkbox.tpl | 6 +++++- view/smarty3/field_combobox.tpl | 6 +++++- view/smarty3/field_custom.tpl | 6 +++++- view/smarty3/field_input.tpl | 6 +++++- view/smarty3/field_intcheckbox.tpl | 6 +++++- view/smarty3/field_openid.tpl | 6 +++++- view/smarty3/field_password.tpl | 6 +++++- view/smarty3/field_radio.tpl | 6 +++++- view/smarty3/field_richtext.tpl | 6 +++++- view/smarty3/field_select.tpl | 6 +++++- view/smarty3/field_select_raw.tpl | 6 +++++- view/smarty3/field_textarea.tpl | 6 +++++- view/smarty3/field_themeselect.tpl | 6 +++++- view/smarty3/field_yesno.tpl | 6 +++++- view/smarty3/fileas_widget.tpl | 6 +++++- view/smarty3/filebrowser.tpl | 6 +++++- view/smarty3/filer_dialog.tpl | 6 +++++- view/smarty3/follow.tpl | 6 +++++- view/smarty3/follow_slap.tpl | 6 +++++- view/smarty3/generic_links_widget.tpl | 6 +++++- view/smarty3/group_drop.tpl | 6 +++++- view/smarty3/group_edit.tpl | 6 +++++- view/smarty3/group_selection.tpl | 6 +++++- view/smarty3/group_side.tpl | 6 +++++- view/smarty3/groupeditor.tpl | 6 +++++- view/smarty3/head.tpl | 6 +++++- view/smarty3/hide_comments.tpl | 6 +++++- view/smarty3/install.tpl | 6 +++++- view/smarty3/install_checks.tpl | 6 +++++- view/smarty3/install_db.tpl | 6 +++++- view/smarty3/install_settings.tpl | 6 +++++- view/smarty3/intros.tpl | 6 +++++- view/smarty3/invite.tpl | 6 +++++- view/smarty3/jot-end.tpl | 5 +++++ view/smarty3/jot-header.tpl | 6 +++++- view/smarty3/jot.tpl | 6 +++++- view/smarty3/jot_geotag.tpl | 6 +++++- view/smarty3/lang_selector.tpl | 6 +++++- view/smarty3/like_noshare.tpl | 6 +++++- view/smarty3/login.tpl | 6 +++++- view/smarty3/login_head.tpl | 5 +++++ view/smarty3/logout.tpl | 6 +++++- view/smarty3/lostpass.tpl | 6 +++++- view/smarty3/magicsig.tpl | 6 +++++- view/smarty3/mail_conv.tpl | 6 +++++- view/smarty3/mail_display.tpl | 6 +++++- view/smarty3/mail_head.tpl | 6 +++++- view/smarty3/mail_list.tpl | 6 +++++- view/smarty3/match.tpl | 6 +++++- view/smarty3/message-end.tpl | 5 +++++ view/smarty3/message-head.tpl | 6 +++++- view/smarty3/message_side.tpl | 6 +++++- view/smarty3/moderated_comment.tpl | 6 +++++- view/smarty3/mood_content.tpl | 6 +++++- view/smarty3/msg-end.tpl | 5 +++++ view/smarty3/msg-header.tpl | 6 +++++- view/smarty3/nav.tpl | 6 +++++- view/smarty3/netfriend.tpl | 6 +++++- view/smarty3/nets.tpl | 6 +++++- view/smarty3/nogroup-template.tpl | 6 +++++- view/smarty3/notifications.tpl | 6 +++++- view/smarty3/notifications_comments_item.tpl | 6 +++++- view/smarty3/notifications_dislikes_item.tpl | 6 +++++- view/smarty3/notifications_friends_item.tpl | 6 +++++- view/smarty3/notifications_likes_item.tpl | 6 +++++- view/smarty3/notifications_network_item.tpl | 6 +++++- view/smarty3/notifications_posts_item.tpl | 6 +++++- view/smarty3/notify.tpl | 6 +++++- view/smarty3/oauth_authorize.tpl | 6 +++++- view/smarty3/oauth_authorize_done.tpl | 6 +++++- view/smarty3/oembed_video.tpl | 6 +++++- view/smarty3/oexchange_xrd.tpl | 6 +++++- view/smarty3/opensearch.tpl | 6 +++++- view/smarty3/pagetypes.tpl | 6 +++++- view/smarty3/peoplefind.tpl | 6 +++++- view/smarty3/photo_album.tpl | 6 +++++- view/smarty3/photo_drop.tpl | 6 +++++- view/smarty3/photo_edit.tpl | 6 +++++- view/smarty3/photo_edit_head.tpl | 6 +++++- view/smarty3/photo_item.tpl | 6 +++++- view/smarty3/photo_top.tpl | 6 +++++- view/smarty3/photo_view.tpl | 6 +++++- view/smarty3/photos_head.tpl | 6 +++++- view/smarty3/photos_recent.tpl | 6 +++++- view/smarty3/photos_upload.tpl | 6 +++++- view/smarty3/poco_entry_xml.tpl | 6 +++++- view/smarty3/poco_xml.tpl | 6 +++++- view/smarty3/poke_content.tpl | 6 +++++- view/smarty3/posted_date_widget.tpl | 6 +++++- view/smarty3/profed_end.tpl | 5 +++++ view/smarty3/profed_head.tpl | 6 +++++- view/smarty3/profile-hide-friends.tpl | 6 +++++- view/smarty3/profile-hide-wall.tpl | 6 +++++- view/smarty3/profile-in-directory.tpl | 6 +++++- view/smarty3/profile-in-netdir.tpl | 6 +++++- view/smarty3/profile_advanced.tpl | 6 +++++- view/smarty3/profile_edit.tpl | 6 +++++- view/smarty3/profile_edlink.tpl | 6 +++++- view/smarty3/profile_entry.tpl | 6 +++++- view/smarty3/profile_listing_header.tpl | 6 +++++- view/smarty3/profile_photo.tpl | 6 +++++- view/smarty3/profile_publish.tpl | 6 +++++- view/smarty3/profile_vcard.tpl | 6 +++++- view/smarty3/prv_message.tpl | 6 +++++- view/smarty3/pwdreset.tpl | 6 +++++- view/smarty3/register.tpl | 6 +++++- view/smarty3/remote_friends_common.tpl | 6 +++++- view/smarty3/removeme.tpl | 6 +++++- view/smarty3/saved_searches_aside.tpl | 6 +++++- view/smarty3/search_item.tpl | 6 +++++- view/smarty3/settings-end.tpl | 5 +++++ view/smarty3/settings-head.tpl | 6 +++++- view/smarty3/settings.tpl | 6 +++++- view/smarty3/settings_addons.tpl | 6 +++++- view/smarty3/settings_connectors.tpl | 6 +++++- view/smarty3/settings_display.tpl | 6 +++++- view/smarty3/settings_display_end.tpl | 5 +++++ view/smarty3/settings_features.tpl | 6 +++++- view/smarty3/settings_nick_set.tpl | 6 +++++- view/smarty3/settings_nick_subdir.tpl | 6 +++++- view/smarty3/settings_oauth.tpl | 6 +++++- view/smarty3/settings_oauth_edit.tpl | 6 +++++- view/smarty3/suggest_friends.tpl | 6 +++++- view/smarty3/suggestions.tpl | 6 +++++- view/smarty3/tag_slap.tpl | 6 +++++- view/smarty3/threaded_conversation.tpl | 6 +++++- view/smarty3/toggle_mobile_footer.tpl | 6 +++++- view/smarty3/uexport.tpl | 6 +++++- view/smarty3/uimport.tpl | 6 +++++- view/smarty3/vcard-widget.tpl | 6 +++++- view/smarty3/viewcontact_template.tpl | 6 +++++- view/smarty3/voting_fakelink.tpl | 6 +++++- view/smarty3/wall_thread.tpl | 6 +++++- view/smarty3/wallmessage.tpl | 6 +++++- view/smarty3/wallmsg-end.tpl | 5 +++++ view/smarty3/wallmsg-header.tpl | 6 +++++- view/smarty3/xrd_diaspora.tpl | 6 +++++- view/smarty3/xrd_host.tpl | 6 +++++- view/smarty3/xrd_person.tpl | 6 +++++- view/sv/smarty3/cmnt_received_eml.tpl | 6 +++++- view/sv/smarty3/follow_notify_eml.tpl | 6 +++++- view/sv/smarty3/friend_complete_eml.tpl | 6 +++++- view/sv/smarty3/htconfig.tpl | 6 +++++- view/sv/smarty3/intro_complete_eml.tpl | 6 +++++- view/sv/smarty3/lostpass_eml.tpl | 6 +++++- view/sv/smarty3/mail_received_html_body_eml.tpl | 6 +++++- view/sv/smarty3/mail_received_text_body_eml.tpl | 6 +++++- view/sv/smarty3/passchanged_eml.tpl | 6 +++++- view/sv/smarty3/register_open_eml.tpl | 6 +++++- view/sv/smarty3/register_verify_eml.tpl | 6 +++++- view/sv/smarty3/request_notify_eml.tpl | 6 +++++- view/sv/smarty3/wall_received_eml.tpl | 6 +++++- view/theme/cleanzero/smarty3/nav.tpl | 6 +++++- view/theme/cleanzero/smarty3/theme_settings.tpl | 6 +++++- view/theme/comix-plain/smarty3/comment_item.tpl | 6 +++++- view/theme/comix-plain/smarty3/search_item.tpl | 6 +++++- view/theme/comix/smarty3/comment_item.tpl | 6 +++++- view/theme/comix/smarty3/search_item.tpl | 6 +++++- view/theme/diabook/smarty3/admin_users.tpl | 6 +++++- view/theme/diabook/smarty3/bottom.tpl | 6 +++++- view/theme/diabook/smarty3/ch_directory_item.tpl | 6 +++++- view/theme/diabook/smarty3/comment_item.tpl | 6 +++++- view/theme/diabook/smarty3/communityhome.tpl | 6 +++++- view/theme/diabook/smarty3/contact_template.tpl | 6 +++++- view/theme/diabook/smarty3/directory_item.tpl | 6 +++++- view/theme/diabook/smarty3/footer.tpl | 6 +++++- view/theme/diabook/smarty3/generic_links_widget.tpl | 6 +++++- view/theme/diabook/smarty3/group_side.tpl | 6 +++++- view/theme/diabook/smarty3/jot.tpl | 6 +++++- view/theme/diabook/smarty3/login.tpl | 6 +++++- view/theme/diabook/smarty3/mail_conv.tpl | 6 +++++- view/theme/diabook/smarty3/mail_display.tpl | 6 +++++- view/theme/diabook/smarty3/mail_list.tpl | 6 +++++- view/theme/diabook/smarty3/message_side.tpl | 6 +++++- view/theme/diabook/smarty3/nav.tpl | 6 +++++- view/theme/diabook/smarty3/nets.tpl | 6 +++++- view/theme/diabook/smarty3/oembed_video.tpl | 6 +++++- view/theme/diabook/smarty3/photo_item.tpl | 6 +++++- view/theme/diabook/smarty3/photo_view.tpl | 6 +++++- view/theme/diabook/smarty3/profile_side.tpl | 6 +++++- view/theme/diabook/smarty3/profile_vcard.tpl | 6 +++++- view/theme/diabook/smarty3/prv_message.tpl | 6 +++++- view/theme/diabook/smarty3/right_aside.tpl | 6 +++++- view/theme/diabook/smarty3/search_item.tpl | 6 +++++- view/theme/diabook/smarty3/theme_settings.tpl | 6 +++++- view/theme/diabook/smarty3/wall_thread.tpl | 6 +++++- view/theme/dispy/smarty3/bottom.tpl | 6 +++++- view/theme/dispy/smarty3/comment_item.tpl | 6 +++++- view/theme/dispy/smarty3/communityhome.tpl | 6 +++++- view/theme/dispy/smarty3/contact_template.tpl | 6 +++++- view/theme/dispy/smarty3/conversation.tpl | 6 +++++- view/theme/dispy/smarty3/group_side.tpl | 6 +++++- view/theme/dispy/smarty3/head.tpl | 6 +++++- view/theme/dispy/smarty3/header.tpl | 5 +++++ view/theme/dispy/smarty3/jot-header.tpl | 6 +++++- view/theme/dispy/smarty3/jot.tpl | 6 +++++- view/theme/dispy/smarty3/lang_selector.tpl | 6 +++++- view/theme/dispy/smarty3/mail_head.tpl | 6 +++++- view/theme/dispy/smarty3/nav.tpl | 6 +++++- view/theme/dispy/smarty3/photo_edit.tpl | 6 +++++- view/theme/dispy/smarty3/photo_view.tpl | 6 +++++- view/theme/dispy/smarty3/profile_vcard.tpl | 6 +++++- view/theme/dispy/smarty3/saved_searches_aside.tpl | 6 +++++- view/theme/dispy/smarty3/search_item.tpl | 6 +++++- view/theme/dispy/smarty3/theme_settings.tpl | 6 +++++- view/theme/dispy/smarty3/threaded_conversation.tpl | 6 +++++- view/theme/dispy/smarty3/wall_thread.tpl | 6 +++++- view/theme/duepuntozero/smarty3/comment_item.tpl | 6 +++++- view/theme/duepuntozero/smarty3/lang_selector.tpl | 6 +++++- view/theme/duepuntozero/smarty3/moderated_comment.tpl | 6 +++++- view/theme/duepuntozero/smarty3/nav.tpl | 6 +++++- view/theme/duepuntozero/smarty3/profile_vcard.tpl | 6 +++++- view/theme/duepuntozero/smarty3/prv_message.tpl | 6 +++++- view/theme/facepark/smarty3/comment_item.tpl | 6 +++++- view/theme/facepark/smarty3/group_side.tpl | 6 +++++- view/theme/facepark/smarty3/jot.tpl | 6 +++++- view/theme/facepark/smarty3/nav.tpl | 6 +++++- view/theme/facepark/smarty3/profile_vcard.tpl | 6 +++++- view/theme/facepark/smarty3/search_item.tpl | 6 +++++- view/theme/frost-mobile/smarty3/acl_selector.tpl | 6 +++++- view/theme/frost-mobile/smarty3/admin_aside.tpl | 6 +++++- view/theme/frost-mobile/smarty3/admin_site.tpl | 6 +++++- view/theme/frost-mobile/smarty3/admin_users.tpl | 6 +++++- view/theme/frost-mobile/smarty3/comment_item.tpl | 6 +++++- view/theme/frost-mobile/smarty3/contact_edit.tpl | 6 +++++- view/theme/frost-mobile/smarty3/contact_head.tpl | 5 +++++ view/theme/frost-mobile/smarty3/contact_template.tpl | 6 +++++- view/theme/frost-mobile/smarty3/contacts-end.tpl | 6 +++++- view/theme/frost-mobile/smarty3/contacts-head.tpl | 6 +++++- view/theme/frost-mobile/smarty3/contacts-template.tpl | 6 +++++- view/theme/frost-mobile/smarty3/contacts-widget-sidebar.tpl | 6 +++++- view/theme/frost-mobile/smarty3/conversation.tpl | 6 +++++- view/theme/frost-mobile/smarty3/cropbody.tpl | 6 +++++- view/theme/frost-mobile/smarty3/cropend.tpl | 6 +++++- view/theme/frost-mobile/smarty3/crophead.tpl | 6 +++++- view/theme/frost-mobile/smarty3/display-head.tpl | 6 +++++- view/theme/frost-mobile/smarty3/end.tpl | 6 +++++- view/theme/frost-mobile/smarty3/event_end.tpl | 6 +++++- view/theme/frost-mobile/smarty3/event_head.tpl | 6 +++++- view/theme/frost-mobile/smarty3/field_checkbox.tpl | 6 +++++- view/theme/frost-mobile/smarty3/field_input.tpl | 6 +++++- view/theme/frost-mobile/smarty3/field_openid.tpl | 6 +++++- view/theme/frost-mobile/smarty3/field_password.tpl | 6 +++++- view/theme/frost-mobile/smarty3/field_themeselect.tpl | 6 +++++- view/theme/frost-mobile/smarty3/generic_links_widget.tpl | 6 +++++- view/theme/frost-mobile/smarty3/head.tpl | 6 +++++- view/theme/frost-mobile/smarty3/jot-end.tpl | 6 +++++- view/theme/frost-mobile/smarty3/jot-header.tpl | 6 +++++- view/theme/frost-mobile/smarty3/jot.tpl | 6 +++++- view/theme/frost-mobile/smarty3/jot_geotag.tpl | 6 +++++- view/theme/frost-mobile/smarty3/lang_selector.tpl | 6 +++++- view/theme/frost-mobile/smarty3/login.tpl | 6 +++++- view/theme/frost-mobile/smarty3/login_head.tpl | 6 +++++- view/theme/frost-mobile/smarty3/lostpass.tpl | 6 +++++- view/theme/frost-mobile/smarty3/mail_conv.tpl | 6 +++++- view/theme/frost-mobile/smarty3/message-end.tpl | 6 +++++- view/theme/frost-mobile/smarty3/message-head.tpl | 5 +++++ view/theme/frost-mobile/smarty3/moderated_comment.tpl | 6 +++++- view/theme/frost-mobile/smarty3/msg-header.tpl | 6 +++++- view/theme/frost-mobile/smarty3/nav.tpl | 6 +++++- view/theme/frost-mobile/smarty3/photo_edit.tpl | 6 +++++- view/theme/frost-mobile/smarty3/photo_edit_head.tpl | 6 +++++- view/theme/frost-mobile/smarty3/photo_view.tpl | 6 +++++- view/theme/frost-mobile/smarty3/photos_head.tpl | 6 +++++- view/theme/frost-mobile/smarty3/photos_upload.tpl | 6 +++++- view/theme/frost-mobile/smarty3/profed_end.tpl | 6 +++++- view/theme/frost-mobile/smarty3/profed_head.tpl | 6 +++++- view/theme/frost-mobile/smarty3/profile_edit.tpl | 6 +++++- view/theme/frost-mobile/smarty3/profile_photo.tpl | 6 +++++- view/theme/frost-mobile/smarty3/profile_vcard.tpl | 6 +++++- view/theme/frost-mobile/smarty3/prv_message.tpl | 6 +++++- view/theme/frost-mobile/smarty3/register.tpl | 6 +++++- view/theme/frost-mobile/smarty3/settings-head.tpl | 6 +++++- view/theme/frost-mobile/smarty3/settings.tpl | 6 +++++- view/theme/frost-mobile/smarty3/settings_display_end.tpl | 6 +++++- view/theme/frost-mobile/smarty3/threaded_conversation.tpl | 6 +++++- view/theme/frost-mobile/smarty3/voting_fakelink.tpl | 6 +++++- view/theme/frost-mobile/smarty3/wall_thread.tpl | 6 +++++- view/theme/frost-mobile/smarty3/wallmsg-end.tpl | 6 +++++- view/theme/frost-mobile/smarty3/wallmsg-header.tpl | 6 +++++- view/theme/frost/smarty3/acl_selector.tpl | 6 +++++- view/theme/frost/smarty3/admin_aside.tpl | 6 +++++- view/theme/frost/smarty3/admin_site.tpl | 6 +++++- view/theme/frost/smarty3/admin_users.tpl | 6 +++++- view/theme/frost/smarty3/comment_item.tpl | 6 +++++- view/theme/frost/smarty3/contact_end.tpl | 6 +++++- view/theme/frost/smarty3/contact_head.tpl | 5 +++++ view/theme/frost/smarty3/contact_template.tpl | 6 +++++- view/theme/frost/smarty3/contacts-end.tpl | 6 +++++- view/theme/frost/smarty3/contacts-head.tpl | 6 +++++- view/theme/frost/smarty3/contacts-template.tpl | 6 +++++- view/theme/frost/smarty3/cropbody.tpl | 6 +++++- view/theme/frost/smarty3/cropend.tpl | 6 +++++- view/theme/frost/smarty3/crophead.tpl | 6 +++++- view/theme/frost/smarty3/display-head.tpl | 6 +++++- view/theme/frost/smarty3/end.tpl | 6 +++++- view/theme/frost/smarty3/event_end.tpl | 6 +++++- view/theme/frost/smarty3/event_head.tpl | 6 +++++- view/theme/frost/smarty3/field_combobox.tpl | 6 +++++- view/theme/frost/smarty3/field_input.tpl | 6 +++++- view/theme/frost/smarty3/field_openid.tpl | 6 +++++- view/theme/frost/smarty3/field_password.tpl | 6 +++++- view/theme/frost/smarty3/field_themeselect.tpl | 6 +++++- view/theme/frost/smarty3/filebrowser.tpl | 6 +++++- view/theme/frost/smarty3/head.tpl | 6 +++++- view/theme/frost/smarty3/jot-end.tpl | 6 +++++- view/theme/frost/smarty3/jot-header.tpl | 6 +++++- view/theme/frost/smarty3/jot.tpl | 6 +++++- view/theme/frost/smarty3/jot_geotag.tpl | 6 +++++- view/theme/frost/smarty3/lang_selector.tpl | 6 +++++- view/theme/frost/smarty3/login.tpl | 6 +++++- view/theme/frost/smarty3/login_head.tpl | 6 +++++- view/theme/frost/smarty3/lostpass.tpl | 6 +++++- view/theme/frost/smarty3/message-end.tpl | 6 +++++- view/theme/frost/smarty3/message-head.tpl | 5 +++++ view/theme/frost/smarty3/moderated_comment.tpl | 6 +++++- view/theme/frost/smarty3/msg-end.tpl | 6 +++++- view/theme/frost/smarty3/msg-header.tpl | 6 +++++- view/theme/frost/smarty3/nav.tpl | 6 +++++- view/theme/frost/smarty3/photo_edit.tpl | 6 +++++- view/theme/frost/smarty3/photo_edit_head.tpl | 6 +++++- view/theme/frost/smarty3/photo_view.tpl | 6 +++++- view/theme/frost/smarty3/photos_head.tpl | 6 +++++- view/theme/frost/smarty3/photos_upload.tpl | 6 +++++- view/theme/frost/smarty3/posted_date_widget.tpl | 6 +++++- view/theme/frost/smarty3/profed_end.tpl | 6 +++++- view/theme/frost/smarty3/profed_head.tpl | 6 +++++- view/theme/frost/smarty3/profile_edit.tpl | 6 +++++- view/theme/frost/smarty3/profile_vcard.tpl | 6 +++++- view/theme/frost/smarty3/prv_message.tpl | 6 +++++- view/theme/frost/smarty3/register.tpl | 6 +++++- view/theme/frost/smarty3/settings-head.tpl | 6 +++++- view/theme/frost/smarty3/settings_display_end.tpl | 6 +++++- view/theme/frost/smarty3/threaded_conversation.tpl | 6 +++++- view/theme/frost/smarty3/voting_fakelink.tpl | 6 +++++- view/theme/frost/smarty3/wall_thread.tpl | 6 +++++- view/theme/frost/smarty3/wallmsg-end.tpl | 6 +++++- view/theme/frost/smarty3/wallmsg-header.tpl | 6 +++++- view/theme/quattro/smarty3/birthdays_reminder.tpl | 6 +++++- view/theme/quattro/smarty3/comment_item.tpl | 6 +++++- view/theme/quattro/smarty3/contact_template.tpl | 6 +++++- view/theme/quattro/smarty3/conversation.tpl | 6 +++++- view/theme/quattro/smarty3/events_reminder.tpl | 6 +++++- view/theme/quattro/smarty3/fileas_widget.tpl | 6 +++++- view/theme/quattro/smarty3/generic_links_widget.tpl | 6 +++++- view/theme/quattro/smarty3/group_side.tpl | 6 +++++- view/theme/quattro/smarty3/jot.tpl | 6 +++++- view/theme/quattro/smarty3/mail_conv.tpl | 6 +++++- view/theme/quattro/smarty3/mail_display.tpl | 6 +++++- view/theme/quattro/smarty3/mail_list.tpl | 6 +++++- view/theme/quattro/smarty3/message_side.tpl | 6 +++++- view/theme/quattro/smarty3/nav.tpl | 6 +++++- view/theme/quattro/smarty3/nets.tpl | 6 +++++- view/theme/quattro/smarty3/photo_view.tpl | 6 +++++- view/theme/quattro/smarty3/profile_vcard.tpl | 6 +++++- view/theme/quattro/smarty3/prv_message.tpl | 6 +++++- view/theme/quattro/smarty3/saved_searches_aside.tpl | 6 +++++- view/theme/quattro/smarty3/search_item.tpl | 6 +++++- view/theme/quattro/smarty3/theme_settings.tpl | 6 +++++- view/theme/quattro/smarty3/threaded_conversation.tpl | 6 +++++- view/theme/quattro/smarty3/wall_item_tag.tpl | 6 +++++- view/theme/quattro/smarty3/wall_thread.tpl | 6 +++++- view/theme/slackr/smarty3/birthdays_reminder.tpl | 6 +++++- view/theme/slackr/smarty3/events_reminder.tpl | 6 +++++- view/theme/smoothly/smarty3/bottom.tpl | 6 +++++- view/theme/smoothly/smarty3/follow.tpl | 6 +++++- view/theme/smoothly/smarty3/jot-header.tpl | 6 +++++- view/theme/smoothly/smarty3/jot.tpl | 6 +++++- view/theme/smoothly/smarty3/lang_selector.tpl | 6 +++++- view/theme/smoothly/smarty3/login.tpl | 6 +++++- view/theme/smoothly/smarty3/nav.tpl | 6 +++++- view/theme/smoothly/smarty3/search_item.tpl | 6 +++++- view/theme/smoothly/smarty3/wall_thread.tpl | 6 +++++- view/theme/testbubble/smarty3/comment_item.tpl | 6 +++++- view/theme/testbubble/smarty3/group_drop.tpl | 6 +++++- view/theme/testbubble/smarty3/group_edit.tpl | 6 +++++- view/theme/testbubble/smarty3/group_side.tpl | 6 +++++- view/theme/testbubble/smarty3/jot-header.tpl | 6 +++++- view/theme/testbubble/smarty3/jot.tpl | 6 +++++- view/theme/testbubble/smarty3/match.tpl | 6 +++++- view/theme/testbubble/smarty3/nav.tpl | 6 +++++- view/theme/testbubble/smarty3/photo_album.tpl | 6 +++++- view/theme/testbubble/smarty3/photo_top.tpl | 6 +++++- view/theme/testbubble/smarty3/photo_view.tpl | 6 +++++- view/theme/testbubble/smarty3/profile_entry.tpl | 6 +++++- view/theme/testbubble/smarty3/profile_vcard.tpl | 6 +++++- view/theme/testbubble/smarty3/saved_searches_aside.tpl | 6 +++++- view/theme/testbubble/smarty3/search_item.tpl | 6 +++++- view/theme/testbubble/smarty3/wall_thread.tpl | 6 +++++- view/theme/vier/smarty3/comment_item.tpl | 6 +++++- view/theme/vier/smarty3/mail_list.tpl | 6 +++++- view/theme/vier/smarty3/nav.tpl | 6 +++++- view/theme/vier/smarty3/profile_edlink.tpl | 6 +++++- view/theme/vier/smarty3/profile_vcard.tpl | 6 +++++- view/theme/vier/smarty3/search_item.tpl | 6 +++++- view/theme/vier/smarty3/threaded_conversation.tpl | 6 +++++- view/theme/vier/smarty3/wall_thread.tpl | 6 +++++- view/zh-cn/smarty3/follow_notify_eml.tpl | 6 +++++- view/zh-cn/smarty3/friend_complete_eml.tpl | 6 +++++- view/zh-cn/smarty3/intro_complete_eml.tpl | 6 +++++- view/zh-cn/smarty3/lostpass_eml.tpl | 6 +++++- view/zh-cn/smarty3/passchanged_eml.tpl | 6 +++++- view/zh-cn/smarty3/register_open_eml.tpl | 6 +++++- view/zh-cn/smarty3/register_verify_eml.tpl | 6 +++++- view/zh-cn/smarty3/request_notify_eml.tpl | 6 +++++- view/zh-cn/smarty3/update_fail_eml.tpl | 6 +++++- 630 files changed, 3148 insertions(+), 611 deletions(-) diff --git a/mods/friendica-to-smarty-tpl.py b/mods/friendica-to-smarty-tpl.py index 369b8ea9a8..9e4e526718 100755 --- a/mods/friendica-to-smarty-tpl.py +++ b/mods/friendica-to-smarty-tpl.py @@ -94,6 +94,9 @@ def fix_element(element): def convert(filename, tofilename, php_tpl): + header = ldelim + "*\n *\tAUTOMATICALLY GENERATED TEMPLATE\n *\tDO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN\n *\n *" + rdelim + tofilename.write(header) + for line in filename: newline = '' st_pos = 0 diff --git a/view/ca/smarty3/cmnt_received_eml.tpl b/view/ca/smarty3/cmnt_received_eml.tpl index 082efc7458..780d5ccd14 100644 --- a/view/ca/smarty3/cmnt_received_eml.tpl +++ b/view/ca/smarty3/cmnt_received_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Apreciat/da {{$username}}, '{{$from}}' ha comentat un element/conversació que estàs seguint. diff --git a/view/ca/smarty3/follow_notify_eml.tpl b/view/ca/smarty3/follow_notify_eml.tpl index 6958365209..79d3af79a4 100644 --- a/view/ca/smarty3/follow_notify_eml.tpl +++ b/view/ca/smarty3/follow_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Apreciat/da {{$myname}}, Tens un nou seguidor en {{$sitename}} - '{{$requestor}}'. diff --git a/view/ca/smarty3/friend_complete_eml.tpl b/view/ca/smarty3/friend_complete_eml.tpl index 58bd14fea0..030d231821 100644 --- a/view/ca/smarty3/friend_complete_eml.tpl +++ b/view/ca/smarty3/friend_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Apreciat/da {{$username}}, Grans noticies... '{{$fn}}' a '{{$dfrn_url}}' ha acceptat la teva sol·licitud de connexió en '{{$sitename}}'. diff --git a/view/ca/smarty3/htconfig.tpl b/view/ca/smarty3/htconfig.tpl index c0fa7b3e09..a9e30cefa4 100644 --- a/view/ca/smarty3/htconfig.tpl +++ b/view/ca/smarty3/htconfig.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Mensaje de Friendica diff --git a/view/ca/smarty3/mail_received_text_body_eml.tpl b/view/ca/smarty3/mail_received_text_body_eml.tpl index a3fa3cd381..eb7d6048b8 100644 --- a/view/ca/smarty3/mail_received_text_body_eml.tpl +++ b/view/ca/smarty3/mail_received_text_body_eml.tpl @@ -1,4 +1,8 @@ -Has rebut un nou missatge privat de '{{$from}}' en {{$siteName}}. +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Has rebut un nou missatge privat de '{{$from}}' en {{$siteName}}. {{$title}} diff --git a/view/ca/smarty3/passchanged_eml.tpl b/view/ca/smarty3/passchanged_eml.tpl index f0d62d9a1c..73f508341f 100644 --- a/view/ca/smarty3/passchanged_eml.tpl +++ b/view/ca/smarty3/passchanged_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Apreciat/da {{$username}}, La teva contrasenya ha estat modificada com has sol·licitat. Pren nota d'aquesta informació diff --git a/view/ca/smarty3/register_open_eml.tpl b/view/ca/smarty3/register_open_eml.tpl index 7da9a2b888..6871ab0150 100644 --- a/view/ca/smarty3/register_open_eml.tpl +++ b/view/ca/smarty3/register_open_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Apreciat/da {{$username}}, Gràcies per registrar-te en {{$sitename}}. El teu compte ha estat creat. diff --git a/view/ca/smarty3/register_verify_eml.tpl b/view/ca/smarty3/register_verify_eml.tpl index 651e8eff78..3dc207dd65 100644 --- a/view/ca/smarty3/register_verify_eml.tpl +++ b/view/ca/smarty3/register_verify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} S'ha rebut la sol·licitud de registre d'un nou usuari en {{$sitename}} que requereix la teva aprovació. diff --git a/view/ca/smarty3/request_notify_eml.tpl b/view/ca/smarty3/request_notify_eml.tpl index 18dc3ef0d4..8d0435859a 100644 --- a/view/ca/smarty3/request_notify_eml.tpl +++ b/view/ca/smarty3/request_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Apreciat/da {{$myname}}, Acabes de rebre una sol·licitud de connexió de '{{$requestor}}' en {{$sitename}}. diff --git a/view/ca/smarty3/wall_received_eml.tpl b/view/ca/smarty3/wall_received_eml.tpl index cd75464416..3c6e919a08 100644 --- a/view/ca/smarty3/wall_received_eml.tpl +++ b/view/ca/smarty3/wall_received_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Apreciat/da {{$username}}, '{{$from}}' ha escrit quelcom en el mur del teu perfil. diff --git a/view/cs/smarty3/cmnt_received_eml.tpl b/view/cs/smarty3/cmnt_received_eml.tpl index baa7c180a3..f69152b6c6 100644 --- a/view/cs/smarty3/cmnt_received_eml.tpl +++ b/view/cs/smarty3/cmnt_received_eml.tpl @@ -1,4 +1,8 @@ -Milý/Milá {{$username}}, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Milý/Milá {{$username}}, '{{$from}}' okommentoval položku/konverzaci, kterou následujete. diff --git a/view/cs/smarty3/cmnt_received_html_body_eml.tpl b/view/cs/smarty3/cmnt_received_html_body_eml.tpl index 867e63332d..a2c05ea0ce 100644 --- a/view/cs/smarty3/cmnt_received_html_body_eml.tpl +++ b/view/cs/smarty3/cmnt_received_html_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Friendica zpráva diff --git a/view/cs/smarty3/cmnt_received_text_body_eml.tpl b/view/cs/smarty3/cmnt_received_text_body_eml.tpl index baa7c180a3..f69152b6c6 100644 --- a/view/cs/smarty3/cmnt_received_text_body_eml.tpl +++ b/view/cs/smarty3/cmnt_received_text_body_eml.tpl @@ -1,4 +1,8 @@ -Milý/Milá {{$username}}, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Milý/Milá {{$username}}, '{{$from}}' okommentoval položku/konverzaci, kterou následujete. diff --git a/view/cs/smarty3/follow_notify_eml.tpl b/view/cs/smarty3/follow_notify_eml.tpl index 1430e83118..e83d60f2ea 100644 --- a/view/cs/smarty3/follow_notify_eml.tpl +++ b/view/cs/smarty3/follow_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Milý/Milá {{$username}}, Máte nového následovatele na {{$sitename}} - '{{$requestor}}'. diff --git a/view/cs/smarty3/friend_complete_eml.tpl b/view/cs/smarty3/friend_complete_eml.tpl index fc953b76cd..f069c095a8 100644 --- a/view/cs/smarty3/friend_complete_eml.tpl +++ b/view/cs/smarty3/friend_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Milý/Milá {{$username}}, Skvělé zprávy... '{{$fn}}' na '{{$dfrn_url}}' odsouhlasil Váš požadavek na spojení na '{{$sitename}}'. diff --git a/view/cs/smarty3/htconfig.tpl b/view/cs/smarty3/htconfig.tpl index c9baae798f..a04d6ea319 100644 --- a/view/cs/smarty3/htconfig.tpl +++ b/view/cs/smarty3/htconfig.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Friendica Zpráva diff --git a/view/cs/smarty3/mail_received_text_body_eml.tpl b/view/cs/smarty3/mail_received_text_body_eml.tpl index 0b4c585cf9..a2348c5247 100644 --- a/view/cs/smarty3/mail_received_text_body_eml.tpl +++ b/view/cs/smarty3/mail_received_text_body_eml.tpl @@ -1,4 +1,8 @@ -{{$from}} Vám poslal(a) novou soukromou zprávu na {{$siteName}}. +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}{{$from}} Vám poslal(a) novou soukromou zprávu na {{$siteName}}. {{$title}} diff --git a/view/cs/smarty3/passchanged_eml.tpl b/view/cs/smarty3/passchanged_eml.tpl index 75db8ebbff..fc7fb8de7f 100644 --- a/view/cs/smarty3/passchanged_eml.tpl +++ b/view/cs/smarty3/passchanged_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Milý/Milá {{$username}}, Vaše heslo bylo na Vaši žádost změněno. Prosím zaznamenejte si tuto informaci (nebo si Vaše heslo změňte na nějaké, které si budete pamatovat). diff --git a/view/cs/smarty3/register_open_eml.tpl b/view/cs/smarty3/register_open_eml.tpl index fa1f828c13..5f9fff7be7 100644 --- a/view/cs/smarty3/register_open_eml.tpl +++ b/view/cs/smarty3/register_open_eml.tpl @@ -1,4 +1,8 @@ -Milý/milá {{$username}}, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Milý/milá {{$username}}, Díky za registraci na {{$sitename}}. Váš účet byl vytvořen. Vaše přihlašovací údaje jsou tato: diff --git a/view/cs/smarty3/register_verify_eml.tpl b/view/cs/smarty3/register_verify_eml.tpl index 9186e7332a..256172f9f3 100644 --- a/view/cs/smarty3/register_verify_eml.tpl +++ b/view/cs/smarty3/register_verify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Na webu {{$sitename}} byla vytvořena nová uživatelská registrace, která vyžaduje Vaše schválení. Přihlašovací údaje jsou tato: diff --git a/view/cs/smarty3/request_notify_eml.tpl b/view/cs/smarty3/request_notify_eml.tpl index f120891e80..e087c0f074 100644 --- a/view/cs/smarty3/request_notify_eml.tpl +++ b/view/cs/smarty3/request_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Milý/Milá {{$username}}, Právě jste obdržel/obdržela požadavek na spojení na webu {{$sitename}} diff --git a/view/cs/smarty3/wall_received_eml.tpl b/view/cs/smarty3/wall_received_eml.tpl index 2578a4e7c6..6f78f2a65a 100644 --- a/view/cs/smarty3/wall_received_eml.tpl +++ b/view/cs/smarty3/wall_received_eml.tpl @@ -1,4 +1,8 @@ -Milý/Milá {{$username}}, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Milý/Milá {{$username}}, '{{$from}}' obohatil Vaši profilovou zeď. diff --git a/view/cs/smarty3/wall_received_html_body_eml.tpl b/view/cs/smarty3/wall_received_html_body_eml.tpl index ebbc2a9e1e..9aae7629a3 100644 --- a/view/cs/smarty3/wall_received_html_body_eml.tpl +++ b/view/cs/smarty3/wall_received_html_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Friendica zpráva diff --git a/view/cs/smarty3/wall_received_text_body_eml.tpl b/view/cs/smarty3/wall_received_text_body_eml.tpl index c8ac0216c3..ee0eebdb93 100644 --- a/view/cs/smarty3/wall_received_text_body_eml.tpl +++ b/view/cs/smarty3/wall_received_text_body_eml.tpl @@ -1,4 +1,8 @@ -Milý/Milá {{$username}}, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Milý/Milá {{$username}}, '{{$from}}' obohatil Vaši profilovou zeď. diff --git a/view/de/smarty3/cmnt_received_eml.tpl b/view/de/smarty3/cmnt_received_eml.tpl index f902d96b4e..5fca2043e1 100644 --- a/view/de/smarty3/cmnt_received_eml.tpl +++ b/view/de/smarty3/cmnt_received_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Hallo {{$username}}, '{{$from}}' hat einen Pinnwandeintrag kommentiert dem du auch folgst. diff --git a/view/de/smarty3/cmnt_received_html_body_eml.tpl b/view/de/smarty3/cmnt_received_html_body_eml.tpl index b4b994c640..e91ac3b88a 100644 --- a/view/de/smarty3/cmnt_received_html_body_eml.tpl +++ b/view/de/smarty3/cmnt_received_html_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Friendica Nachricht diff --git a/view/de/smarty3/cmnt_received_text_body_eml.tpl b/view/de/smarty3/cmnt_received_text_body_eml.tpl index 19f81a5e3a..9908ee9972 100644 --- a/view/de/smarty3/cmnt_received_text_body_eml.tpl +++ b/view/de/smarty3/cmnt_received_text_body_eml.tpl @@ -1,4 +1,8 @@ -Hallo {{$username}}, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Hallo {{$username}}, '{{$from}}' hat einen Pinnwandeintrag kommentiert dem du auch folgst. diff --git a/view/de/smarty3/follow_notify_eml.tpl b/view/de/smarty3/follow_notify_eml.tpl index 2fd04bb658..490ad26ddb 100644 --- a/view/de/smarty3/follow_notify_eml.tpl +++ b/view/de/smarty3/follow_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Hallo {{$myname}}, Du hast einen neuen Anhänger auf {{$sitename}} - '{{$requestor}}'. diff --git a/view/de/smarty3/friend_complete_eml.tpl b/view/de/smarty3/friend_complete_eml.tpl index 72234dc67b..78e1b718aa 100644 --- a/view/de/smarty3/friend_complete_eml.tpl +++ b/view/de/smarty3/friend_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Hallo {{$username}}, Großartige Neuigkeiten... '{{$fn}}' auf '{{$dfrn_url}}' hat diff --git a/view/de/smarty3/htconfig.tpl b/view/de/smarty3/htconfig.tpl index 75d6a77e89..d404e49da8 100644 --- a/view/de/smarty3/htconfig.tpl +++ b/view/de/smarty3/htconfig.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Friendica Nachricht diff --git a/view/de/smarty3/mail_received_text_body_eml.tpl b/view/de/smarty3/mail_received_text_body_eml.tpl index 7daa6fbf90..5d41f2af06 100644 --- a/view/de/smarty3/mail_received_text_body_eml.tpl +++ b/view/de/smarty3/mail_received_text_body_eml.tpl @@ -1,4 +1,8 @@ -Du hast eine neue private Nachricht von '{{$from}}' auf '{{$siteName}}' erhhalten. +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Du hast eine neue private Nachricht von '{{$from}}' auf '{{$siteName}}' erhhalten. {{$title}} diff --git a/view/de/smarty3/passchanged_eml.tpl b/view/de/smarty3/passchanged_eml.tpl index eb08c20b7e..3b2c8dc905 100644 --- a/view/de/smarty3/passchanged_eml.tpl +++ b/view/de/smarty3/passchanged_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Hallo {{$username}}, Dein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen in deinen Unterlagen auf (oder ändere dein Passwort sofort diff --git a/view/de/smarty3/register_open_eml.tpl b/view/de/smarty3/register_open_eml.tpl index af0a0b9bb4..ad676eaf7e 100644 --- a/view/de/smarty3/register_open_eml.tpl +++ b/view/de/smarty3/register_open_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Hallo {{$username}}, Danke für deine Anmeldung auf {{$sitename}}. Dein Account wurde angelegt. Hier die Login Details: diff --git a/view/de/smarty3/register_verify_eml.tpl b/view/de/smarty3/register_verify_eml.tpl index 78d4aa6b72..237d4bf559 100644 --- a/view/de/smarty3/register_verify_eml.tpl +++ b/view/de/smarty3/register_verify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Eine Neuanmeldung auf {{$sitename}} benötigt deine Aufmerksamkeit. diff --git a/view/de/smarty3/request_notify_eml.tpl b/view/de/smarty3/request_notify_eml.tpl index 7493935e9b..6567dcb7e6 100644 --- a/view/de/smarty3/request_notify_eml.tpl +++ b/view/de/smarty3/request_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Hallo {{$myname}}, du hast eine Kontaktanfrage von '{{$requestor}}' auf {{$sitename}} diff --git a/view/de/smarty3/update_fail_eml.tpl b/view/de/smarty3/update_fail_eml.tpl index 5b614709a7..8d20b599bc 100644 --- a/view/de/smarty3/update_fail_eml.tpl +++ b/view/de/smarty3/update_fail_eml.tpl @@ -1,4 +1,8 @@ -Hi, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Hi, ich bin {{$sitename}}. Die friendica Entwickler haben jüngst Update {{$update}} veröffentlicht, aber als ich versucht habe es zu installieren ist etwas schrecklich schief gegangen. diff --git a/view/de/smarty3/wall_received_eml.tpl b/view/de/smarty3/wall_received_eml.tpl index e90d67261f..633a6f9b7c 100644 --- a/view/de/smarty3/wall_received_eml.tpl +++ b/view/de/smarty3/wall_received_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Hallo {{$username}}, '{{$from}}' hat etwas auf deiner Profilwand gepostet. diff --git a/view/de/smarty3/wall_received_html_body_eml.tpl b/view/de/smarty3/wall_received_html_body_eml.tpl index e6e7f27073..3a182aa172 100644 --- a/view/de/smarty3/wall_received_html_body_eml.tpl +++ b/view/de/smarty3/wall_received_html_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Friendica Nachricht diff --git a/view/de/smarty3/wall_received_text_body_eml.tpl b/view/de/smarty3/wall_received_text_body_eml.tpl index f53dc6c9c3..f1f794a40f 100644 --- a/view/de/smarty3/wall_received_text_body_eml.tpl +++ b/view/de/smarty3/wall_received_text_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Hallo {{$username}}, '{{$from}}' hat etwas auf deiner Pinnwand gepostet. diff --git a/view/en/smarty3/follow_notify_eml.tpl b/view/en/smarty3/follow_notify_eml.tpl index ba07b19dad..85f989fad5 100644 --- a/view/en/smarty3/follow_notify_eml.tpl +++ b/view/en/smarty3/follow_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Dear {{$myname}}, You have a new follower at {{$sitename}} - '{{$requestor}}'. diff --git a/view/en/smarty3/friend_complete_eml.tpl b/view/en/smarty3/friend_complete_eml.tpl index 229b4fee86..81cb74e148 100644 --- a/view/en/smarty3/friend_complete_eml.tpl +++ b/view/en/smarty3/friend_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Dear {{$username}}, Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted diff --git a/view/en/smarty3/htconfig.tpl b/view/en/smarty3/htconfig.tpl index 745bf03fe1..6a335c854c 100644 --- a/view/en/smarty3/htconfig.tpl +++ b/view/en/smarty3/htconfig.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Mensaje de Friendica diff --git a/view/es/smarty3/mail_received_text_body_eml.tpl b/view/es/smarty3/mail_received_text_body_eml.tpl index 22b77b7246..0823f312f3 100644 --- a/view/es/smarty3/mail_received_text_body_eml.tpl +++ b/view/es/smarty3/mail_received_text_body_eml.tpl @@ -1,4 +1,8 @@ -Has recibido un nuevo mensaje privado de '{{$from}}' en {{$siteName}}. +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Has recibido un nuevo mensaje privado de '{{$from}}' en {{$siteName}}. {{$title}} diff --git a/view/es/smarty3/passchanged_eml.tpl b/view/es/smarty3/passchanged_eml.tpl index eb93eb369e..a48ef26ef3 100644 --- a/view/es/smarty3/passchanged_eml.tpl +++ b/view/es/smarty3/passchanged_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Estimado/a {{$username}}, Tu contraseña ha sido modificada como has solicitado. Anota esta información diff --git a/view/es/smarty3/register_open_eml.tpl b/view/es/smarty3/register_open_eml.tpl index c65b13497c..ad254471ee 100644 --- a/view/es/smarty3/register_open_eml.tpl +++ b/view/es/smarty3/register_open_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Estimado/a {{$username}}, Gracias por registrarte en {{$sitename}}. Tu cuenta ha sido creada. diff --git a/view/es/smarty3/register_verify_eml.tpl b/view/es/smarty3/register_verify_eml.tpl index 10c35863e6..a2db15659a 100644 --- a/view/es/smarty3/register_verify_eml.tpl +++ b/view/es/smarty3/register_verify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Se ha recibido la solicitud de registro de un nuevo usuario en {{$sitename}} que requiere tu aprobación. diff --git a/view/es/smarty3/request_notify_eml.tpl b/view/es/smarty3/request_notify_eml.tpl index cb787a8a69..a2f79b353b 100644 --- a/view/es/smarty3/request_notify_eml.tpl +++ b/view/es/smarty3/request_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Estimado/a {{$myname}}, Acabas de recibir una solicitud de conexión de '{{$requestor}}' en {{$sitename}}. diff --git a/view/es/smarty3/wall_received_eml.tpl b/view/es/smarty3/wall_received_eml.tpl index 8f495d9efa..1de443ad2f 100644 --- a/view/es/smarty3/wall_received_eml.tpl +++ b/view/es/smarty3/wall_received_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Estimado/a {{$username}}, '{{$from}}' ha escrito algo en el muro de tu perfil. diff --git a/view/fr/smarty3/cmnt_received_eml.tpl b/view/fr/smarty3/cmnt_received_eml.tpl index bd7c441eac..ae7252ca34 100644 --- a/view/fr/smarty3/cmnt_received_eml.tpl +++ b/view/fr/smarty3/cmnt_received_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Cher(e) {{$username}}, « {{$from}} » a commenté un élément ou une conversation que vous suivez. diff --git a/view/fr/smarty3/cmnt_received_html_body_eml.tpl b/view/fr/smarty3/cmnt_received_html_body_eml.tpl index 408b643ec4..2bd6c04a53 100644 --- a/view/fr/smarty3/cmnt_received_html_body_eml.tpl +++ b/view/fr/smarty3/cmnt_received_html_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Message de Friendica diff --git a/view/fr/smarty3/cmnt_received_text_body_eml.tpl b/view/fr/smarty3/cmnt_received_text_body_eml.tpl index 76828474bf..a00c6c8607 100644 --- a/view/fr/smarty3/cmnt_received_text_body_eml.tpl +++ b/view/fr/smarty3/cmnt_received_text_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Cher(e) {{$username}}, {{$from}} a comment un lment ou une conversation que vous suivez. diff --git a/view/fr/smarty3/follow_notify_eml.tpl b/view/fr/smarty3/follow_notify_eml.tpl index 05fec413ea..6d6cddda4e 100644 --- a/view/fr/smarty3/follow_notify_eml.tpl +++ b/view/fr/smarty3/follow_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Cher(e) {{$myname}}, Une nouvelle personne - {{$requestor}} - vous suit désormais sur {{$sitename}}. diff --git a/view/fr/smarty3/friend_complete_eml.tpl b/view/fr/smarty3/friend_complete_eml.tpl index e0c0078e55..dea9c5af9a 100644 --- a/view/fr/smarty3/friend_complete_eml.tpl +++ b/view/fr/smarty3/friend_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Cher(e) {{$username}}, Grande nouvelle… « {{$fn}} » (de « {{$dfrn_url}} ») a accepté votre diff --git a/view/fr/smarty3/htconfig.tpl b/view/fr/smarty3/htconfig.tpl index 75d6a77e89..d404e49da8 100644 --- a/view/fr/smarty3/htconfig.tpl +++ b/view/fr/smarty3/htconfig.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Message de Friendica diff --git a/view/fr/smarty3/mail_received_text_body_eml.tpl b/view/fr/smarty3/mail_received_text_body_eml.tpl index 71c545ed61..6c80134492 100644 --- a/view/fr/smarty3/mail_received_text_body_eml.tpl +++ b/view/fr/smarty3/mail_received_text_body_eml.tpl @@ -1,4 +1,8 @@ -{{$from}} vous a envoy un message {{$siteName}}. +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}{{$from}} vous a envoy un message {{$siteName}}. {{$title}} diff --git a/view/fr/smarty3/passchanged_eml.tpl b/view/fr/smarty3/passchanged_eml.tpl index 28eed70f15..3d0a84b4ce 100644 --- a/view/fr/smarty3/passchanged_eml.tpl +++ b/view/fr/smarty3/passchanged_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Cher(e) {{$username}}, Votre mot de passe a été modifié comme demandé. Merci de conserver diff --git a/view/fr/smarty3/register_open_eml.tpl b/view/fr/smarty3/register_open_eml.tpl index 373f314b09..ac5473ebe3 100644 --- a/view/fr/smarty3/register_open_eml.tpl +++ b/view/fr/smarty3/register_open_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Cher(e) {{$username}}, Merci de votre inscription à {{$sitename}}. Votre compte a été créé. diff --git a/view/fr/smarty3/register_verify_eml.tpl b/view/fr/smarty3/register_verify_eml.tpl index 22b6d8a947..99294f9ad1 100644 --- a/view/fr/smarty3/register_verify_eml.tpl +++ b/view/fr/smarty3/register_verify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Une nouvelle demande d'inscription a été reçue sur {{$sitename}}, et elle nécessite votre approbation. diff --git a/view/fr/smarty3/request_notify_eml.tpl b/view/fr/smarty3/request_notify_eml.tpl index 3f5f8a1f44..22193d7584 100644 --- a/view/fr/smarty3/request_notify_eml.tpl +++ b/view/fr/smarty3/request_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Cher(e) {{$myname}}, Vous venez de recevoir une demande de mise en relation sur {{$sitename}} diff --git a/view/fr/smarty3/wall_received_eml.tpl b/view/fr/smarty3/wall_received_eml.tpl index 991fad8574..31d080be95 100644 --- a/view/fr/smarty3/wall_received_eml.tpl +++ b/view/fr/smarty3/wall_received_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Cher(e) {{$username}}, « {{$from}} » a posté quelque chose sur le mur de votre profil. diff --git a/view/is/smarty3/follow_notify_eml.tpl b/view/is/smarty3/follow_notify_eml.tpl index 127f05a457..4f036f4c70 100644 --- a/view/is/smarty3/follow_notify_eml.tpl +++ b/view/is/smarty3/follow_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Góðan daginn {{$myname}}, Þú hefur nýjan aðdáanda frá {{$sitename}} - '{{$requestor}}'. diff --git a/view/is/smarty3/friend_complete_eml.tpl b/view/is/smarty3/friend_complete_eml.tpl index 1bc440269e..dbd5db6093 100644 --- a/view/is/smarty3/friend_complete_eml.tpl +++ b/view/is/smarty3/friend_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Góðan daginn {{$username}}, Frábærar fréttir... '{{$fn}}' hjá '{{$dfrn_url}}' hefur samþykkt diff --git a/view/is/smarty3/intro_complete_eml.tpl b/view/is/smarty3/intro_complete_eml.tpl index bbf86cf157..ee93ea0f6f 100644 --- a/view/is/smarty3/intro_complete_eml.tpl +++ b/view/is/smarty3/intro_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Góðan daginn {{$username}}, '{{$fn}}' hjá '{{$dfrn_url}}' hefur samþykkt diff --git a/view/is/smarty3/lostpass_eml.tpl b/view/is/smarty3/lostpass_eml.tpl index d2010ac8fe..27f01a9c13 100644 --- a/view/is/smarty3/lostpass_eml.tpl +++ b/view/is/smarty3/lostpass_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Góðan dag {{$username}}, Beiðni barst á {{$sitename}} um að endursetja aðgangsorðið. Til að staðfesta þessa beiði, veldu slóðina diff --git a/view/is/smarty3/passchanged_eml.tpl b/view/is/smarty3/passchanged_eml.tpl index c19551208e..57675d03f5 100644 --- a/view/is/smarty3/passchanged_eml.tpl +++ b/view/is/smarty3/passchanged_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Góðan daginn {{$username}}, Lykilorð þínu hefur verið breytt einsog umbeðið var. Endilega geyma þessar upplýsingar (eða skiptu strax um aðgangsorð diff --git a/view/is/smarty3/register_open_eml.tpl b/view/is/smarty3/register_open_eml.tpl index 0673224d1f..4002415241 100644 --- a/view/is/smarty3/register_open_eml.tpl +++ b/view/is/smarty3/register_open_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Góðan daginn {{$username}}, Takk fyrir að skrá þig á {{$sitename}}. Notandinn þinn hefur verið stofnaður. Innskráningar upplýsingarnar þínar eru eftirfarandi: diff --git a/view/is/smarty3/register_verify_eml.tpl b/view/is/smarty3/register_verify_eml.tpl index cf6362c4b7..6e582cf4e0 100644 --- a/view/is/smarty3/register_verify_eml.tpl +++ b/view/is/smarty3/register_verify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Beiðni um nýjan notanda barst {{$sitename}} sem krefst þíns samþykkis. diff --git a/view/is/smarty3/request_notify_eml.tpl b/view/is/smarty3/request_notify_eml.tpl index 36d8f217af..1cb54c255e 100644 --- a/view/is/smarty3/request_notify_eml.tpl +++ b/view/is/smarty3/request_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Góðan dag {{$myname}}, Þér hefur borist beiðni um tengingu á {{$sitename}} diff --git a/view/is/smarty3/update_fail_eml.tpl b/view/is/smarty3/update_fail_eml.tpl index 201f87131d..756eb3c228 100644 --- a/view/is/smarty3/update_fail_eml.tpl +++ b/view/is/smarty3/update_fail_eml.tpl @@ -1,4 +1,8 @@ -Hæ, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Hæ, Ég er {{$sitename}}. Þróunarteymi friendica gáfu nýlega út uppfærslu {{$update}}, En þegar ég reyndi að uppfæra, gerist eitthvað hræðilegt. diff --git a/view/it/smarty3/cmnt_received_eml.tpl b/view/it/smarty3/cmnt_received_eml.tpl index f35dc3dc9f..4bb5567659 100644 --- a/view/it/smarty3/cmnt_received_eml.tpl +++ b/view/it/smarty3/cmnt_received_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Caro/a {{$username}}, '{{$from}}' ha commentato un elemeto/conversazione che stai seguendo. diff --git a/view/it/smarty3/cmnt_received_html_body_eml.tpl b/view/it/smarty3/cmnt_received_html_body_eml.tpl index 80d6118073..a18efbafd3 100644 --- a/view/it/smarty3/cmnt_received_html_body_eml.tpl +++ b/view/it/smarty3/cmnt_received_html_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Friendica Messaggio diff --git a/view/it/smarty3/cmnt_received_text_body_eml.tpl b/view/it/smarty3/cmnt_received_text_body_eml.tpl index f35dc3dc9f..4bb5567659 100644 --- a/view/it/smarty3/cmnt_received_text_body_eml.tpl +++ b/view/it/smarty3/cmnt_received_text_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Caro/a {{$username}}, '{{$from}}' ha commentato un elemeto/conversazione che stai seguendo. diff --git a/view/it/smarty3/follow_notify_eml.tpl b/view/it/smarty3/follow_notify_eml.tpl index 0bfc375520..049b62903a 100644 --- a/view/it/smarty3/follow_notify_eml.tpl +++ b/view/it/smarty3/follow_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Ciao {{$myname}}, Un nuovo utente ha iniziato a seguirti su {{$sitename}} - '{{$requestor}}'. diff --git a/view/it/smarty3/friend_complete_eml.tpl b/view/it/smarty3/friend_complete_eml.tpl index daeaae9016..c3c8bfecb3 100644 --- a/view/it/smarty3/friend_complete_eml.tpl +++ b/view/it/smarty3/friend_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Ciao {{$username}}, Ottime notizie... '{{$fn}}' di '{{$dfrn_url}}' ha accettato diff --git a/view/it/smarty3/htconfig.tpl b/view/it/smarty3/htconfig.tpl index 5696245c77..0294b5c73b 100644 --- a/view/it/smarty3/htconfig.tpl +++ b/view/it/smarty3/htconfig.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Friendica Messsaggio diff --git a/view/it/smarty3/mail_received_text_body_eml.tpl b/view/it/smarty3/mail_received_text_body_eml.tpl index 79e133fcef..75a73a1c22 100644 --- a/view/it/smarty3/mail_received_text_body_eml.tpl +++ b/view/it/smarty3/mail_received_text_body_eml.tpl @@ -1,4 +1,8 @@ -Hai ricevuto un nuovo messsaggio privato su {{$siteName}} da '{{$from}}'. +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Hai ricevuto un nuovo messsaggio privato su {{$siteName}} da '{{$from}}'. {{$title}} diff --git a/view/it/smarty3/passchanged_eml.tpl b/view/it/smarty3/passchanged_eml.tpl index 046588e1f2..0669dd6a46 100644 --- a/view/it/smarty3/passchanged_eml.tpl +++ b/view/it/smarty3/passchanged_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Ciao {{$username}}, La tua password è cambiata come hai richiesto. Conserva queste informazioni (oppure cambia immediatamente la password con diff --git a/view/it/smarty3/register_open_eml.tpl b/view/it/smarty3/register_open_eml.tpl index 23dcaf2c8d..277b4cbd8a 100644 --- a/view/it/smarty3/register_open_eml.tpl +++ b/view/it/smarty3/register_open_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Ciao {{$username}}, Grazie per aver effettuato la registrazione a {{$sitename}}. Il tuo account è stato creato. I dettagli di accesso sono i seguenti diff --git a/view/it/smarty3/register_verify_eml.tpl b/view/it/smarty3/register_verify_eml.tpl index 743370b3df..2e28eedb8f 100644 --- a/view/it/smarty3/register_verify_eml.tpl +++ b/view/it/smarty3/register_verify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Su {{$sitename}} è stata ricevuta una nuova richiesta di registrazione da parte di un utente che richiede la tua approvazione. diff --git a/view/it/smarty3/request_notify_eml.tpl b/view/it/smarty3/request_notify_eml.tpl index df3a7323c1..a93cc0c873 100644 --- a/view/it/smarty3/request_notify_eml.tpl +++ b/view/it/smarty3/request_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Ciao {{$myname}}, Hai appena ricevuto una richiesta di connessione da {{$sitename}} diff --git a/view/it/smarty3/wall_received_eml.tpl b/view/it/smarty3/wall_received_eml.tpl index 909ec86d44..9b0b7d603f 100644 --- a/view/it/smarty3/wall_received_eml.tpl +++ b/view/it/smarty3/wall_received_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Caro/a {{$username}}, '{{$from}}' ha scritto qualcosa sulla bachecha del tuo profilo. diff --git a/view/it/smarty3/wall_received_html_body_eml.tpl b/view/it/smarty3/wall_received_html_body_eml.tpl index 3fa724c3bc..09464bbbc0 100644 --- a/view/it/smarty3/wall_received_html_body_eml.tpl +++ b/view/it/smarty3/wall_received_html_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Messaggio da Friendica diff --git a/view/it/smarty3/wall_received_text_body_eml.tpl b/view/it/smarty3/wall_received_text_body_eml.tpl index ad7f83abcb..c88144f794 100644 --- a/view/it/smarty3/wall_received_text_body_eml.tpl +++ b/view/it/smarty3/wall_received_text_body_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Caro {{$username}}, '{{$from}}' ha scritto sulla tua bacheca. diff --git a/view/nb-no/smarty3/follow_notify_eml.tpl b/view/nb-no/smarty3/follow_notify_eml.tpl index 094539cf5b..f7473176c1 100644 --- a/view/nb-no/smarty3/follow_notify_eml.tpl +++ b/view/nb-no/smarty3/follow_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Kjære {{$myname}}, Du har en ny følgesvenn på {{$sitename}} - '{{$requestor}}'. diff --git a/view/nb-no/smarty3/friend_complete_eml.tpl b/view/nb-no/smarty3/friend_complete_eml.tpl index 17cc38a8ca..424243c9a6 100644 --- a/view/nb-no/smarty3/friend_complete_eml.tpl +++ b/view/nb-no/smarty3/friend_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Kjære {{$username}}, Gode nyheter... '{{$fn}}' ved '{{$dfrn_url}}' har godtatt diff --git a/view/nb-no/smarty3/intro_complete_eml.tpl b/view/nb-no/smarty3/intro_complete_eml.tpl index edf699936e..4aacdd028a 100644 --- a/view/nb-no/smarty3/intro_complete_eml.tpl +++ b/view/nb-no/smarty3/intro_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Kjære {{$username}}, '{{$fn}}' ved '{{$dfrn_url}}' har godtatt diff --git a/view/nb-no/smarty3/lostpass_eml.tpl b/view/nb-no/smarty3/lostpass_eml.tpl index e0f335ff18..7c750a3e99 100644 --- a/view/nb-no/smarty3/lostpass_eml.tpl +++ b/view/nb-no/smarty3/lostpass_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Kjære {{$username}}, En forespørsel ble nylig mottatt hos {{$sitename}} om å tilbakestille din kontos passord. For å godkjenne denne forespørselen, vennligst velg bekreftelseslenken diff --git a/view/nb-no/smarty3/passchanged_eml.tpl b/view/nb-no/smarty3/passchanged_eml.tpl index 2d3144bc52..d4e45a05d5 100644 --- a/view/nb-no/smarty3/passchanged_eml.tpl +++ b/view/nb-no/smarty3/passchanged_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Kjære {{$username}}, Ditt passord har blitt endret som forespurt. Vennligst ta vare på denne meldingen for sikkerhets skyld (eller bytt passordet ditt umiddelbart til diff --git a/view/nb-no/smarty3/register_open_eml.tpl b/view/nb-no/smarty3/register_open_eml.tpl index 7fe8e5983f..2b7fe30ed1 100644 --- a/view/nb-no/smarty3/register_open_eml.tpl +++ b/view/nb-no/smarty3/register_open_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Kjære {{$username}}, Takk for at du registrerte deg hos {{$sitename}}. Kontoen din er opprettet. Innloggingsdetaljene er som følger: diff --git a/view/nb-no/smarty3/register_verify_eml.tpl b/view/nb-no/smarty3/register_verify_eml.tpl index 9efb9b08b6..3ef38b35e8 100644 --- a/view/nb-no/smarty3/register_verify_eml.tpl +++ b/view/nb-no/smarty3/register_verify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} En ny forespørsel om brukerregistering ble mottatt hos {{$sitename}} og krever din godkjenning. diff --git a/view/nb-no/smarty3/request_notify_eml.tpl b/view/nb-no/smarty3/request_notify_eml.tpl index ae89c6141c..5f55154f1a 100644 --- a/view/nb-no/smarty3/request_notify_eml.tpl +++ b/view/nb-no/smarty3/request_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Kjære {{$myname}}, Du har akkurat mottatt en kontaktforespørsel hos {{$sitename}} diff --git a/view/nb-no/smarty3/update_fail_eml.tpl b/view/nb-no/smarty3/update_fail_eml.tpl index 1116f2cd7d..19940de1b9 100644 --- a/view/nb-no/smarty3/update_fail_eml.tpl +++ b/view/nb-no/smarty3/update_fail_eml.tpl @@ -1,4 +1,8 @@ -Hei, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Hei, jeg er {{$sitename}}. Friendica-utviklerne slapp nylig oppdateringen {{$update}}, men da jeg prøvde å installere den, gikk noe forferdelig galt. diff --git a/view/pl/smarty3/follow_notify_eml.tpl b/view/pl/smarty3/follow_notify_eml.tpl index 0fdbbf49fe..e483b2a18b 100644 --- a/view/pl/smarty3/follow_notify_eml.tpl +++ b/view/pl/smarty3/follow_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Drogi {{$myname}}, Masz nowego obserwującego na {{$sitename}} - '{{$requestor}}'. diff --git a/view/pl/smarty3/friend_complete_eml.tpl b/view/pl/smarty3/friend_complete_eml.tpl index 12918b6b69..5056feb9fa 100644 --- a/view/pl/smarty3/friend_complete_eml.tpl +++ b/view/pl/smarty3/friend_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Drogi {{$username}}, Świetne wieści! '{{$fn}}' na '{{$dfrn_url}}' przyjął / przyjęła diff --git a/view/pl/smarty3/intro_complete_eml.tpl b/view/pl/smarty3/intro_complete_eml.tpl index 55dc1d78ea..84c648f8a6 100644 --- a/view/pl/smarty3/intro_complete_eml.tpl +++ b/view/pl/smarty3/intro_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Drogi {{$username}}, '{{$fn}}' w '{{$dfrn_url}}' zaakceptował diff --git a/view/pl/smarty3/lostpass_eml.tpl b/view/pl/smarty3/lostpass_eml.tpl index 7d5240cfa3..25a16402b7 100644 --- a/view/pl/smarty3/lostpass_eml.tpl +++ b/view/pl/smarty3/lostpass_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$username}}, Ze strony {{$sitename}} wpłynęła prośba z zresetowanie hasła. W celu potwierdzenia kliknij w weryfikacyjny link diff --git a/view/pl/smarty3/passchanged_eml.tpl b/view/pl/smarty3/passchanged_eml.tpl index b8ba39cdf6..39a2f1360f 100644 --- a/view/pl/smarty3/passchanged_eml.tpl +++ b/view/pl/smarty3/passchanged_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Drogi {{$username}}, Twoje hasło zostało zmienione. Zachowaj tę Informację dla dokumentacji (lub zmień swoje hasło diff --git a/view/pl/smarty3/register_open_eml.tpl b/view/pl/smarty3/register_open_eml.tpl index 604ebfacc3..bf8afa689f 100644 --- a/view/pl/smarty3/register_open_eml.tpl +++ b/view/pl/smarty3/register_open_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Drogi {{$username}}, Dziękujemy za rejestrację na {{$sitename}}. Twoje konto zostało utworzone pomyślnie. Dane do logowania: diff --git a/view/pl/smarty3/register_verify_eml.tpl b/view/pl/smarty3/register_verify_eml.tpl index 017e0ec0be..69a24031dc 100644 --- a/view/pl/smarty3/register_verify_eml.tpl +++ b/view/pl/smarty3/register_verify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Nowy wniosek o rejestrację użytkownika wpłynął na {{$sitename}} i wymaga potwierdzenia. diff --git a/view/pl/smarty3/request_notify_eml.tpl b/view/pl/smarty3/request_notify_eml.tpl index ea31ca8769..e99ae3c057 100644 --- a/view/pl/smarty3/request_notify_eml.tpl +++ b/view/pl/smarty3/request_notify_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Drogi/a {{$myname}}, Otrzymałeś właśnie zaproszenie do znajomych na stronie {{$sitename}} diff --git a/view/pl/smarty3/update_fail_eml.tpl b/view/pl/smarty3/update_fail_eml.tpl index 809fd552ec..56c6bc1e8c 100644 --- a/view/pl/smarty3/update_fail_eml.tpl +++ b/view/pl/smarty3/update_fail_eml.tpl @@ -1,4 +1,8 @@ -Hey, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Hey, Jestem {{$sitename}}. Deweloperzy friendica wydali ostatnio aktualizację {{$update}}, ale kiedy próbowałem ją zainstalować, coś poszło nie tak. diff --git a/view/pt-br/smarty3/intro_complete_eml.tpl b/view/pt-br/smarty3/intro_complete_eml.tpl index 3689d653c2..ac271d4afc 100644 --- a/view/pt-br/smarty3/intro_complete_eml.tpl +++ b/view/pt-br/smarty3/intro_complete_eml.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} Prezado/a {{$username}}, '{{$fn}}' em '{{$dfrn_url}}' aceitou diff --git a/view/pt-br/smarty3/update_fail_eml.tpl b/view/pt-br/smarty3/update_fail_eml.tpl index f8f5e2ef20..169a3840bc 100644 --- a/view/pt-br/smarty3/update_fail_eml.tpl +++ b/view/pt-br/smarty3/update_fail_eml.tpl @@ -1,4 +1,8 @@ -Oi, +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}Oi, Eu sou {{$sitename}} Os desenvolvedores do friendica lançaram uma atualização {{$update}} recentemente, mas quando tentei instalá-la algo de errado aconeteceu. diff --git a/view/smarty3/404.tpl b/view/smarty3/404.tpl index 518ad1d290..7ee5324ac9 100644 --- a/view/smarty3/404.tpl +++ b/view/smarty3/404.tpl @@ -1 +1,5 @@ -

{{$message}}

+{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}

{{$message}}

diff --git a/view/smarty3/acl_selector.tpl b/view/smarty3/acl_selector.tpl index e9f8030d7c..423e4e9dd4 100644 --- a/view/smarty3/acl_selector.tpl +++ b/view/smarty3/acl_selector.tpl @@ -1,4 +1,8 @@ -
+{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}
{{$showall}}
diff --git a/view/smarty3/admin_aside.tpl b/view/smarty3/admin_aside.tpl index a9d26a89f0..0fac11f3ac 100644 --- a/view/smarty3/admin_aside.tpl +++ b/view/smarty3/admin_aside.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} diff --git a/view/smarty3/delegate.tpl b/view/smarty3/delegate.tpl index cbaa8da860..a6b365f548 100644 --- a/view/smarty3/delegate.tpl +++ b/view/smarty3/delegate.tpl @@ -1,4 +1,8 @@ -

{{$header}}

+{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}

{{$header}}

{{$desc}}
diff --git a/view/smarty3/dfrn_req_confirm.tpl b/view/smarty3/dfrn_req_confirm.tpl index 655af22d41..195f55d78f 100644 --- a/view/smarty3/dfrn_req_confirm.tpl +++ b/view/smarty3/dfrn_req_confirm.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}

{{$welcome}}
diff --git a/view/smarty3/dfrn_request.tpl b/view/smarty3/dfrn_request.tpl index aa5cbd6e46..b268698df9 100644 --- a/view/smarty3/dfrn_request.tpl +++ b/view/smarty3/dfrn_request.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}

{{$header}}

diff --git a/view/smarty3/diasp_dec_hdr.tpl b/view/smarty3/diasp_dec_hdr.tpl index 636ff7bd0e..2343bdc865 100644 --- a/view/smarty3/diasp_dec_hdr.tpl +++ b/view/smarty3/diasp_dec_hdr.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$inner_iv}} {{$inner_key}} diff --git a/view/smarty3/diaspora_comment.tpl b/view/smarty3/diaspora_comment.tpl index 27ec3dffce..533703ba15 100644 --- a/view/smarty3/diaspora_comment.tpl +++ b/view/smarty3/diaspora_comment.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$guid}} diff --git a/view/smarty3/diaspora_comment_relay.tpl b/view/smarty3/diaspora_comment_relay.tpl index 37a9e88b3a..fd98e7210d 100644 --- a/view/smarty3/diaspora_comment_relay.tpl +++ b/view/smarty3/diaspora_comment_relay.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$guid}} diff --git a/view/smarty3/diaspora_conversation.tpl b/view/smarty3/diaspora_conversation.tpl index dc4482e4b0..00e5373ea0 100644 --- a/view/smarty3/diaspora_conversation.tpl +++ b/view/smarty3/diaspora_conversation.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$conv.guid}} diff --git a/view/smarty3/diaspora_like.tpl b/view/smarty3/diaspora_like.tpl index b03aef37a1..c0acfdd43f 100644 --- a/view/smarty3/diaspora_like.tpl +++ b/view/smarty3/diaspora_like.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$target_type}} diff --git a/view/smarty3/diaspora_like_relay.tpl b/view/smarty3/diaspora_like_relay.tpl index 30df4cac67..fc987e18d5 100644 --- a/view/smarty3/diaspora_like_relay.tpl +++ b/view/smarty3/diaspora_like_relay.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$guid}} diff --git a/view/smarty3/diaspora_message.tpl b/view/smarty3/diaspora_message.tpl index 3413d79b00..61d1ea4db4 100644 --- a/view/smarty3/diaspora_message.tpl +++ b/view/smarty3/diaspora_message.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$msg.guid}} diff --git a/view/smarty3/diaspora_photo.tpl b/view/smarty3/diaspora_photo.tpl index cd7ef58023..dfcb99fa87 100644 --- a/view/smarty3/diaspora_photo.tpl +++ b/view/smarty3/diaspora_photo.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$path}} diff --git a/view/smarty3/diaspora_post.tpl b/view/smarty3/diaspora_post.tpl index abbcc4c610..fe2a80164e 100644 --- a/view/smarty3/diaspora_post.tpl +++ b/view/smarty3/diaspora_post.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$body}} diff --git a/view/smarty3/diaspora_profile.tpl b/view/smarty3/diaspora_profile.tpl index 04f2e2948b..c6cd8d0048 100644 --- a/view/smarty3/diaspora_profile.tpl +++ b/view/smarty3/diaspora_profile.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$handle}} {{$first}} diff --git a/view/smarty3/diaspora_relay_retraction.tpl b/view/smarty3/diaspora_relay_retraction.tpl index 5e7aed41f3..404c8a046a 100644 --- a/view/smarty3/diaspora_relay_retraction.tpl +++ b/view/smarty3/diaspora_relay_retraction.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$type}} diff --git a/view/smarty3/diaspora_relayable_retraction.tpl b/view/smarty3/diaspora_relayable_retraction.tpl index 927e394f39..54e137ae16 100644 --- a/view/smarty3/diaspora_relayable_retraction.tpl +++ b/view/smarty3/diaspora_relayable_retraction.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$target_type}} diff --git a/view/smarty3/diaspora_retract.tpl b/view/smarty3/diaspora_retract.tpl index 26e2cb94e3..b5115ffbfb 100644 --- a/view/smarty3/diaspora_retract.tpl +++ b/view/smarty3/diaspora_retract.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$guid}} diff --git a/view/smarty3/diaspora_share.tpl b/view/smarty3/diaspora_share.tpl index 59eb061242..16946ac792 100644 --- a/view/smarty3/diaspora_share.tpl +++ b/view/smarty3/diaspora_share.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$sender}} diff --git a/view/smarty3/diaspora_signed_retract.tpl b/view/smarty3/diaspora_signed_retract.tpl index f0f346da80..bdeeafcc6a 100644 --- a/view/smarty3/diaspora_signed_retract.tpl +++ b/view/smarty3/diaspora_signed_retract.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} {{$guid}} diff --git a/view/smarty3/diaspora_vcard.tpl b/view/smarty3/diaspora_vcard.tpl index 9d234a3989..b94cc81b39 100644 --- a/view/smarty3/diaspora_vcard.tpl +++ b/view/smarty3/diaspora_vcard.tpl @@ -1,4 +1,8 @@ -

+{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}
Nickname
diff --git a/view/smarty3/directory_header.tpl b/view/smarty3/directory_header.tpl index c2ca64682c..91d547b424 100644 --- a/view/smarty3/directory_header.tpl +++ b/view/smarty3/directory_header.tpl @@ -1,4 +1,8 @@ -

{{$sitedir}}

+{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}

{{$sitedir}}

{{$globaldir}} {{$admin}} diff --git a/view/smarty3/directory_item.tpl b/view/smarty3/directory_item.tpl index f4bd66d771..d9a4225f92 100644 --- a/view/smarty3/directory_item.tpl +++ b/view/smarty3/directory_item.tpl @@ -1,4 +1,8 @@ - +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}
diff --git a/view/smarty3/display-head.tpl b/view/smarty3/display-head.tpl index 3d4e7e96ad..aaa105fa80 100644 --- a/view/smarty3/display-head.tpl +++ b/view/smarty3/display-head.tpl @@ -1,4 +1,8 @@ - diff --git a/view/smarty3/events-js.tpl b/view/smarty3/events-js.tpl index c87d205292..f7f69d532a 100644 --- a/view/smarty3/events-js.tpl +++ b/view/smarty3/events-js.tpl @@ -1,4 +1,8 @@ -{{$tabs}} +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}{{$tabs}}

{{$title}}

diff --git a/view/smarty3/events.tpl b/view/smarty3/events.tpl index 50a8cf3a86..313092b68e 100644 --- a/view/smarty3/events.tpl +++ b/view/smarty3/events.tpl @@ -1,4 +1,8 @@ -{{$tabs}} +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}{{$tabs}}

{{$title}}

diff --git a/view/smarty3/events_reminder.tpl b/view/smarty3/events_reminder.tpl index bd070575fe..cbc4bd340f 100644 --- a/view/smarty3/events_reminder.tpl +++ b/view/smarty3/events_reminder.tpl @@ -1,4 +1,8 @@ -{{if $count}} +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}{{if $count}}