aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/locale/pl/_lib/formatRelative
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-06-28 17:26:46 -0700
committerPinapelz <yukais@pinapelz.com>2025-06-28 17:43:56 -0700
commite4fa1e69e7ebfb627c7198fd1a9881e9327ec4d4 (patch)
tree06284a538a6008eca75051399e47db4e5d50301c /node_modules/date-fns/locale/pl/_lib/formatRelative
initial commit: scaffolding
Diffstat (limited to 'node_modules/date-fns/locale/pl/_lib/formatRelative')
-rw-r--r--node_modules/date-fns/locale/pl/_lib/formatRelative/index.js63
1 files changed, 63 insertions, 0 deletions
diff --git a/node_modules/date-fns/locale/pl/_lib/formatRelative/index.js b/node_modules/date-fns/locale/pl/_lib/formatRelative/index.js
new file mode 100644
index 0000000..18b6275
--- /dev/null
+++ b/node_modules/date-fns/locale/pl/_lib/formatRelative/index.js
@@ -0,0 +1,63 @@
+"use strict";
+
+var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = void 0;
+var _index = _interopRequireDefault(require("../../../../_lib/isSameUTCWeek/index.js"));
+var adjectivesLastWeek = {
+ masculine: 'ostatni',
+ feminine: 'ostatnia'
+};
+var adjectivesThisWeek = {
+ masculine: 'ten',
+ feminine: 'ta'
+};
+var adjectivesNextWeek = {
+ masculine: 'następny',
+ feminine: 'następna'
+};
+var dayGrammaticalGender = {
+ 0: 'feminine',
+ 1: 'masculine',
+ 2: 'masculine',
+ 3: 'feminine',
+ 4: 'masculine',
+ 5: 'masculine',
+ 6: 'feminine'
+};
+function dayAndTimeWithAdjective(token, date, baseDate, options) {
+ var adjectives;
+ if ((0, _index.default)(date, baseDate, options)) {
+ adjectives = adjectivesThisWeek;
+ } else if (token === 'lastWeek') {
+ adjectives = adjectivesLastWeek;
+ } else if (token === 'nextWeek') {
+ adjectives = adjectivesNextWeek;
+ } else {
+ throw new Error("Cannot determine adjectives for token ".concat(token));
+ }
+ var day = date.getUTCDay();
+ var grammaticalGender = dayGrammaticalGender[day];
+ var adjective = adjectives[grammaticalGender];
+ return "'".concat(adjective, "' eeee 'o' p");
+}
+var formatRelativeLocale = {
+ lastWeek: dayAndTimeWithAdjective,
+ yesterday: "'wczoraj o' p",
+ today: "'dzisiaj o' p",
+ tomorrow: "'jutro o' p",
+ nextWeek: dayAndTimeWithAdjective,
+ other: 'P'
+};
+var formatRelative = function formatRelative(token, date, baseDate, options) {
+ var format = formatRelativeLocale[token];
+ if (typeof format === 'function') {
+ return format(token, date, baseDate, options);
+ }
+ return format;
+};
+var _default = formatRelative;
+exports.default = _default;
+module.exports = exports.default; \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage