1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# The Actions column
about-processes-column-action =
.title = क्रिया
## Tooltips
about-processes-shutdown-tab =
.title = टैब बंद करें
## Column headers
about-processes-column-name = नाम
about-processes-column-cpu-total = CPU
## Process names
## Variables:
## $pid (String) The process id of this process, assigned by the OS.
about-processes-browser-process = { -brand-short-name } ({ $pid })
about-processes-file-process = फाइल ({ $pid })
about-processes-extension-process = एक्सटेंशन ({ $pid })
about-processes-plugin-process = प्लगइन ({ $pid })
about-processes-gpu-process = GPU ({ $pid })
about-processes-vr-process = VR ({ $pid })
about-processes-rdd-process = डेटा डिकोडर ({ $pid })
about-processes-socket-process = नेटवर्क ({ $pid })
# Unknown process names
# Variables:
# $pid (String) The process id of this process, assigned by the OS.
# $type (String) The raw type for this process.
about-processes-unknown-process = अन्य: { $type } ({ $pid })
## Isolated process names
## Variables:
## $pid (String) The process id of this process, assigned by the OS.
## $origin (String) The domain name for this process.
about-processes-web-isolated-process = { $origin } ({ $pid })
## Details within processes
# Thread details
# Variables:
# $name (String) The name assigned to the thread.
# $tid (String) The thread id of this thread, assigned by the OS.
about-processes-thread-name-and-id = { $name }
.title = थ्रेड आईडी: { $tid }
# Tab
# Variables:
# $name (String) The name of the tab (typically the title of the page, might be the url while the page is loading).
about-processes-tab-name = टैब: { $name }
## Utility process actor names
## Displaying CPU (percentage and total)
## Variables:
## $percent (Number) The percentage of CPU used by the process or thread.
## Always > 0, generally <= 200.
## $total (Number) The amount of time used by the process or thread since
## its start.
## $unit (String) The unit in which to display $total. See the definitions
## of `duration-unit-*`.
# Common case.
about-processes-cpu = { NUMBER($percent, maximumSignificantDigits: 2, style: "percent") }
.title = कुल CPU समय: { NUMBER($total, maximumFractionDigits: 0) }{ $unit }
## Displaying Memory (total and delta)
## Variables:
## $total (Number) The amount of memory currently used by the process.
## $totalUnit (String) The unit in which to display $total. See the definitions
## of `memory-unit-*`.
## $delta (Number) The absolute value of the amount of memory added recently.
## $deltaSign (String) Either "+" if the amount of memory has increased
## or "-" if it has decreased.
## $deltaUnit (String) The unit in which to display $delta. See the definitions
## of `memory-unit-*`.
# Special case: no change.
about-processes-total-memory-size-no-change = { NUMBER($total, maximumFractionDigits: 0) }{ $totalUnit }
## Duration units
duration-unit-ns = ns
duration-unit-us = μs
duration-unit-ms = ms
duration-unit-s = s
duration-unit-m = m
duration-unit-h = h
duration-unit-d = d
## Memory units
memory-unit-B = B
memory-unit-KB = KB
memory-unit-MB = MB
memory-unit-GB = GB
memory-unit-TB = TB
memory-unit-PB = PB
memory-unit-EB = EB
|