[gnome-sound-recorder] record: Change File Naming Style



commit 0cadedc0d6c1b70616c4a7d77094cd411cc807b1
Author: Saad Patel <patelsaadn gmail com>
Date:   Wed Mar 11 20:09:31 2020 +0530

    record: Change File Naming Style

 src/record.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/record.js b/src/record.js
index c7c94de..b6a561f 100644
--- a/src/record.js
+++ b/src/record.js
@@ -342,9 +342,9 @@ const BuildFileName = class BuildFileName {
     buildInitialFilename() {
         var dir = Gio.Application.get_default().saveDir;
         this.dateTime = GLib.DateTime.new_now_local();
-        /* Translators: ""Recording from %R on %A %F "" is the default name assigned to a file created
-            by the application (for example, "Recording from 14:40:30 on Tuesday 2020-02-25"). */
-        var clipName = this.dateTime.format(_('Recording from %R on %A %F'));
+        /* Translators: ""Recording from %F %A at %T"" is the default name assigned to a file created
+            by the application (for example, "Recording from 2020-03-11 Wednesday at 19:43:05"). */
+        var clipName = this.dateTime.format(_('Recording from %F %A at %T'));
         this.clip = dir.get_child_for_display_name(clipName);
         var file = this.clip.get_path();
         return file;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]