Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
thunar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pratik Karki
thunar
Commits
abcf8d73
Commit
abcf8d73
authored
3 years ago
by
Sergios - Anestis Kefalidis
Committed by
Alexander Schwinn
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Reduce indentation
parent
c86f519b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
thunar/thunar-util.c
+70
-73
70 additions, 73 deletions
thunar/thunar-util.c
with
70 additions
and
73 deletions
thunar/thunar-util.c
+
70
−
73
View file @
abcf8d73
...
...
@@ -401,94 +401,91 @@ thunar_util_humanize_file_time (guint64 file_time,
gint
diff
;
/* check if the file_time is valid */
if
(
G_LIKELY
(
file_time
!=
0
))
{
ftime
=
(
time_t
)
file_time
;
if
(
G_UNLIKELY
(
file_time
!=
0
))
return
g_strdup
(
_
(
"Unknown"
));
/* take a copy of the local file time */
tfile
=
*
localtime
(
&
ftime
);
ftime
=
(
time_t
)
file_time
;
/* check which style to use to format the time */
if
(
date_style
==
THUNAR_DATE_STYLE_SIMPLE
||
date_style
==
THUNAR_DATE_STYLE_SHORT
)
{
/* setup the dates for the time values */
g_date_set_time_t
(
&
dfile
,
(
time_t
)
ftime
);
g_date_set_time_t
(
&
dnow
,
time
(
NULL
));
/* take a copy of the local file time */
tfile
=
*
localtime
(
&
ftime
);
/* determine the difference in days */
diff
=
g_date_get_julian
(
&
dnow
)
-
g_date_get_julian
(
&
dfile
);
if
(
diff
==
0
)
{
if
(
date_style
==
THUNAR_DATE_STYLE_SIMPLE
)
{
/* TRANSLATORS: file was modified less than one day ago */
return
g_strdup
(
_
(
"Today"
));
}
else
/* if (date_style == THUNAR_DATE_STYLE_SHORT) */
{
/* TRANSLATORS: file was modified less than one day ago */
return
exo_strdup_strftime
(
_
(
"Today at %X"
),
&
tfile
);
}
}
else
if
(
diff
==
1
)
/* check which style to use to format the time */
if
(
date_style
==
THUNAR_DATE_STYLE_SIMPLE
||
date_style
==
THUNAR_DATE_STYLE_SHORT
)
{
/* setup the dates for the time values */
g_date_set_time_t
(
&
dfile
,
(
time_t
)
ftime
);
g_date_set_time_t
(
&
dnow
,
time
(
NULL
));
/* determine the difference in days */
diff
=
g_date_get_julian
(
&
dnow
)
-
g_date_get_julian
(
&
dfile
);
if
(
diff
==
0
)
{
if
(
date_style
==
THUNAR_DATE_STYLE_SIMPLE
)
{
if
(
date_style
==
THUNAR_DATE_STYLE_SIMPLE
)
{
/* TRANSLATORS: file was modified less than two days ago */
return
g_strdup
(
_
(
"Yesterday"
));
}
else
/* if (date_style == THUNAR_DATE_STYLE_SHORT) */
{
/* TRANSLATORS: file was modified less than two days ago */
return
exo_strdup_strftime
(
_
(
"Yesterday at %X"
),
&
tfile
);
}
/* TRANSLATORS: file was modified less than one day ago */
return
g_strdup
(
_
(
"Today"
));
}
else
else
/* if (date_style == THUNAR_DATE_STYLE_SHORT) */
{
if
(
diff
>
1
&&
diff
<
7
)
{
/* Days from last week */
date_format
=
(
date_style
==
THUNAR_DATE_STYLE_SIMPLE
)
?
"%A"
:
_
(
"%A at %X"
);
}
else
{
/* Any other date */
date_format
=
(
date_style
==
THUNAR_DATE_STYLE_SIMPLE
)
?
"%x"
:
_
(
"%x at %X"
);
}
/* format the date string accordingly */
return
exo_strdup_strftime
(
date_format
,
&
tfile
);
/* TRANSLATORS: file was modified less than one day ago */
return
exo_strdup_strftime
(
_
(
"Today at %X"
),
&
tfile
);
}
}
else
if
(
d
ate_style
==
THUNAR_DATE_STYLE_LONG
)
else
if
(
d
iff
==
1
)
{
/* use long, date(1)-like format string */
return
exo_strdup_strftime
(
"%c"
,
&
tfile
);
}
else
if
(
date_style
==
THUNAR_DATE_STYLE_YYYYMMDD
)
{
return
exo_strdup_strftime
(
"%Y-%m-%d %H:%M:%S"
,
&
tfile
);
}
else
if
(
date_style
==
THUNAR_DATE_STYLE_MMDDYYYY
)
{
return
exo_strdup_strftime
(
"%m-%d-%Y %H:%M:%S"
,
&
tfile
);
}
else
if
(
date_style
==
THUNAR_DATE_STYLE_DDMMYYYY
)
{
return
exo_strdup_strftime
(
"%d-%m-%Y %H:%M:%S"
,
&
tfile
);
if
(
date_style
==
THUNAR_DATE_STYLE_SIMPLE
)
{
/* TRANSLATORS: file was modified less than two days ago */
return
g_strdup
(
_
(
"Yesterday"
));
}
else
/* if (date_style == THUNAR_DATE_STYLE_SHORT) */
{
/* TRANSLATORS: file was modified less than two days ago */
return
exo_strdup_strftime
(
_
(
"Yesterday at %X"
),
&
tfile
);
}
}
else
/* if (date_style == THUNAR_DATE_STYLE_CUSTOM) */
else
{
if
(
date_custom_style
==
NULL
)
return
g_strdup
(
""
);
if
(
diff
>
1
&&
diff
<
7
)
{
/* Days from last week */
date_format
=
(
date_style
==
THUNAR_DATE_STYLE_SIMPLE
)
?
"%A"
:
_
(
"%A at %X"
);
}
else
{
/* Any other date */
date_format
=
(
date_style
==
THUNAR_DATE_STYLE_SIMPLE
)
?
"%x"
:
_
(
"%x at %X"
);
}
/*
use custom date formatt
ing */
return
exo_strdup_strftime
(
date_
custom_style
,
&
tfile
);
/*
format the date string accord
ing
ly
*/
return
exo_strdup_strftime
(
date_
format
,
&
tfile
);
}
}
else
if
(
date_style
==
THUNAR_DATE_STYLE_LONG
)
{
/* use long, date(1)-like format string */
return
exo_strdup_strftime
(
"%c"
,
&
tfile
);
}
else
if
(
date_style
==
THUNAR_DATE_STYLE_YYYYMMDD
)
{
return
exo_strdup_strftime
(
"%Y-%m-%d %H:%M:%S"
,
&
tfile
);
}
else
if
(
date_style
==
THUNAR_DATE_STYLE_MMDDYYYY
)
{
return
exo_strdup_strftime
(
"%m-%d-%Y %H:%M:%S"
,
&
tfile
);
}
else
if
(
date_style
==
THUNAR_DATE_STYLE_DDMMYYYY
)
{
return
exo_strdup_strftime
(
"%d-%m-%Y %H:%M:%S"
,
&
tfile
);
}
else
/* if (date_style == THUNAR_DATE_STYLE_CUSTOM) */
{
if
(
date_custom_style
==
NULL
)
return
g_strdup
(
""
);
/* the file_time is invalid */
return
g_strdup
(
_
(
"Unknown"
));
/* use custom date formatting */
return
exo_strdup_strftime
(
date_custom_style
,
&
tfile
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment