]> git.mxchange.org Git - friendica.git/commitdiff
rename "file as" to "save to folder"
authorfriendica <info@friendica.com>
Fri, 30 Mar 2012 09:42:36 +0000 (02:42 -0700)
committerfriendica <info@friendica.com>
Fri, 30 Mar 2012 09:42:36 +0000 (02:42 -0700)
include/contact_widgets.php
include/conversation.php
mod/filer.php

index 9d7085d2012d0bca711d6f7b19d6c196062a9aba..1f70e536f2461b6872634e2894b5da5d1a4bd462 100755 (executable)
@@ -93,7 +93,7 @@ function fileas_widget($baseurl,$selected = '') {
        }
 
        return replace_macros(get_markup_template('fileas_widget.tpl'),array(
-               '$title' => t('File Selections'),
+               '$title' => t('Saved Folders'),
                '$desc' => '',
                '$sel_all' => (($selected == '') ? 'selected' : ''),
                '$all' => t('Everything'),
index 402713b32dc13445c943328842e0eb9fd6319538..a9fb807add3289067ed6725af2505b9df404e6c5 100755 (executable)
@@ -595,7 +595,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
                                                        'classtagger' => "",
                                                );
                                        }
-                                       $filer = t("file as");
+                                       $filer = t("save to folder");
                                }
 
 
@@ -915,7 +915,7 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
                '$vidurl' => t("Please enter a video link/URL:"),
                '$audurl' => t("Please enter an audio link/URL:"),
                '$term' => t('Tag term:'),
-               '$fileas' => t('File as:'),
+               '$fileas' => t('Save to Folder:'),
                '$whereareu' => t('Where are you right now?')
        ));
 
index 82537848ba11f12415640b66e94df1c2ec32f28b..3b3a379310aa0b800653d753202126d88182bd11 100755 (executable)
@@ -25,7 +25,7 @@ function filer_content(&$a) {
                $filetags = explode("][", trim($filetags,"[]"));
                $tpl = get_markup_template("filer_dialog.tpl");
                $o = replace_macros($tpl, array(
-                       '$field' => array('term', t("File as:"), '', '', $filetags, t('- select -')),
+                       '$field' => array('term', t("Save to Folder:"), '', '', $filetags, t('- select -')),
                        '$submit' => t('Save'),
                ));