commands: Rename --i18n-warnings to printI18nWarnings
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 15 Feb 2022 12:03:36 +0000 (13:03 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 15 Feb 2022 12:03:36 +0000 (13:03 +0100)
To get it in line with the others.

commands/commands.go
commands/commands_test.go
commands/hugo.go
docs/content/en/commands/hugo.md
docs/content/en/commands/hugo_mod.md
docs/content/en/commands/hugo_new.md
docs/content/en/commands/hugo_server.md

index 6d8149cb37b511dc0379694e723fdf4d0d82dcae..63707e368bee3b310a44f0ea2170642369c03434 100644 (file)
@@ -304,7 +304,7 @@ func (cc *hugoBuilderCommon) handleFlags(cmd *cobra.Command) {
        cmd.Flags().BoolP("forceSyncStatic", "", false, "copy all files when static is changed.")
        cmd.Flags().BoolP("noTimes", "", false, "don't sync modification time of files")
        cmd.Flags().BoolP("noChmod", "", false, "don't sync permission mode of files")
-       cmd.Flags().BoolP("i18n-warnings", "", false, "print missing translations")
+       cmd.Flags().BoolP("printI18nWarnings", "", false, "print missing translations")
        cmd.Flags().BoolP("printPathWarnings", "", false, "print warnings on duplicate target paths etc.")
        cmd.Flags().StringVarP(&cc.cpuprofile, "profile-cpu", "", "", "write cpu profile to `file`")
        cmd.Flags().StringVarP(&cc.memprofile, "profile-mem", "", "", "write memory profile to `file`")
index 3bf2b2e96e649f8fed0e82a1a89d701964aedc2f..9e623e9a27cf9575feeea3bb76a5d52179942744 100644 (file)
@@ -190,7 +190,7 @@ func TestFlags(t *testing.T) {
                                "--navigateToChanged",
                                "--disableLiveReload",
                                "--noHTTPCache",
-                               "--i18n-warnings",
+                               "--printI18nWarnings",
                                "--destination=/tmp/mydestination",
                                "-b=https://example.com/b/",
                                "--port=1366",
@@ -223,7 +223,7 @@ func TestFlags(t *testing.T) {
                                // The flag is named printPathWarnings
                                c.Assert(cfg.GetBool("logPathWarnings"), qt.Equals, true)
 
-                               // The flag is named i18n-warnings
+                               // The flag is named printI18nWarnings
                                c.Assert(cfg.GetBool("logI18nWarnings"), qt.Equals, true)
                        },
                },
index 1eac05ea162f1f66357dac88284b7ea83d8764f1..ce3c4ab7ba353a29f172bc77107eee5f9ba26051 100644 (file)
@@ -216,7 +216,7 @@ func initializeFlags(cmd *cobra.Command, cfg config.Provider) {
                "dryRun",
                "force",
                "gc",
-               "i18n-warnings",
+               "printI18nWarnings",
                "invalidateCDN",
                "layoutDir",
                "logFile",
@@ -243,7 +243,7 @@ func initializeFlags(cmd *cobra.Command, cfg config.Provider) {
 
        // Set some "config aliases"
        setValueFromFlag(cmd.Flags(), "destination", cfg, "publishDir", false)
-       setValueFromFlag(cmd.Flags(), "i18n-warnings", cfg, "logI18nWarnings", false)
+       setValueFromFlag(cmd.Flags(), "printI18nWarnings", cfg, "logI18nWarnings", false)
        setValueFromFlag(cmd.Flags(), "printPathWarnings", cfg, "logPathWarnings", false)
 }
 
index 3f459cbda4b2bc6f49a95ffa2b3197e96b63d475..088a8102f374bf0ddd4d64e4aff31b4c5cb2b5ae 100644 (file)
@@ -40,7 +40,6 @@ hugo [flags]
       --forceSyncStatic            copy all files when static is changed.
       --gc                         enable to run some cleanup tasks (remove unused cache files) after the build
   -h, --help                       help for hugo
-      --i18n-warnings              print missing translations
       --ignoreCache                ignores the cache directory
       --ignoreVendorPaths string   ignores any _vendor for module paths matching the given Glob pattern
   -l, --layoutDir string           filesystem path to layout directory
@@ -51,6 +50,7 @@ hugo [flags]
       --noTimes                    don't sync modification time of files
       --panicOnWarning             panic on first WARNING log
       --poll string                set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
+      --printI18nWarnings          print missing translations
       --printMemoryUsage           print memory usage to screen at intervals
       --printPathWarnings          print warnings on duplicate target paths etc.
       --quiet                      build in quiet mode
index 6f5fdb3c9fa2149b0cd3b03784c6c0cddf2ed34f..b0860f2999092147b844a54d19e1827a97b605be 100644 (file)
@@ -39,7 +39,6 @@ See https://gohugo.io/hugo-modules/ for more information.
       --forceSyncStatic        copy all files when static is changed.
       --gc                     enable to run some cleanup tasks (remove unused cache files) after the build
   -h, --help                   help for mod
-      --i18n-warnings          print missing translations
       --ignoreCache            ignores the cache directory
   -l, --layoutDir string       filesystem path to layout directory
       --minify                 minify any supported output format (HTML, XML etc.)
@@ -47,6 +46,7 @@ See https://gohugo.io/hugo-modules/ for more information.
       --noTimes                don't sync modification time of files
       --panicOnWarning         panic on first WARNING log
       --poll string            set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
+      --printI18nWarnings      print missing translations
       --printMemoryUsage       print memory usage to screen at intervals
       --printPathWarnings      print warnings on duplicate target paths etc.
       --templateMetrics        display metrics about template executions
index 25b42820de944f035002e085f8bd79caaab4172f..e8a7d3b08025cc4f192d89dfc1d256908cc7fc9b 100644 (file)
@@ -39,7 +39,6 @@ hugo new [path] [flags]
       --forceSyncStatic        copy all files when static is changed.
       --gc                     enable to run some cleanup tasks (remove unused cache files) after the build
   -h, --help                   help for new
-      --i18n-warnings          print missing translations
       --ignoreCache            ignores the cache directory
   -k, --kind string            content type to create
   -l, --layoutDir string       filesystem path to layout directory
@@ -48,6 +47,7 @@ hugo new [path] [flags]
       --noTimes                don't sync modification time of files
       --panicOnWarning         panic on first WARNING log
       --poll string            set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
+      --printI18nWarnings      print missing translations
       --printMemoryUsage       print memory usage to screen at intervals
       --printPathWarnings      print warnings on duplicate target paths etc.
       --templateMetrics        display metrics about template executions
index f85faf5a897d39ec9724eebae8ec8b3539c54170..abdb64a5eed2aef18f58efaef9e7c06e60447c19 100644 (file)
@@ -47,7 +47,6 @@ hugo server [flags]
       --forceSyncStatic        copy all files when static is changed.
       --gc                     enable to run some cleanup tasks (remove unused cache files) after the build
   -h, --help                   help for server
-      --i18n-warnings          print missing translations
       --ignoreCache            ignores the cache directory
   -l, --layoutDir string       filesystem path to layout directory
       --liveReloadPort int     port for live reloading (i.e. 443 in HTTPS proxy situations) (default -1)
@@ -61,6 +60,7 @@ hugo server [flags]
       --panicOnWarning         panic on first WARNING log
       --poll string            set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes
   -p, --port int               port on which the server will listen (default 1313)
+      --printI18nWarnings      print missing translations
       --printMemoryUsage       print memory usage to screen at intervals
       --printPathWarnings      print warnings on duplicate target paths etc.
       --renderToDisk           render to Destination path (default is render to memory & serve from there)