Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:mozilla-services/screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
ianb committed Jan 4, 2019
2 parents 8d10d08 + 663d530 commit 0318782
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions locales/es-ES/server.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,14 @@ buttonSignIn =
.title = Iniciar sesión
screenshotsLogo =
.title = Página de inicio de Screenshots
bannerSignIn = <a>Inicia sesión o regístrate</a> para acceder a tus capturas en todos tus dispositivos y guardar tus favoritas para siempre.
bannerUpsell = { gScreenshotsDescription } <a>Obtener Firefox ahora</a>
# Text used in Firefox Account onboarding promo shown below
# # button in header
onboardingPromoTitle = Novedades de Firefox Screenshots
onboardingPromoMessage = Ahora, inicia sesión en Screenshots con un cuenta de Firefox y haz más:
onboardingPromoMessageListItem1 = Accede a tu biblioteca desde todos tus dispositivos
onboardingPromoMessageListItem2 = Almacena tus capturas favoritas para siempre
onboardingPromoDismissButton = Descartar
.title = Descartar
onboardingPromoSigninButton = Iniciar sesión
Expand Down
2 changes: 2 additions & 0 deletions locales/es-ES/webextension.properties
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ tourBodyFullPage = Selecciona los botones de la parte superior derecha para capt
# Slide number 5:
tourHeaderDownloadUpload = Como más te guste
tourBodyDownloadUpload = Guarda las capturas de la Web recortadas para compartirlas mejor o descárgalas en tu ordenador. También puedes hacer clic en Mis capturas para ver todas las capturas que has hecho.
tourHeaderAccounts = Screenshots en todas partes
tourBodyAccounts = Inicia sesión con tu cuenta de Firefox para acceder a tus capturas en todos tus dispositivos y guarda tus capturas favoritas para siempre.
tourSkip = Saltar
tourNext = Diapositiva siguiente
tourPrevious = Diapositiva anterior
Expand Down
3 changes: 3 additions & 0 deletions locales/su/webextension.properties
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ imageCropPopupWarning = Gambar anu diteundeun bakal dipotong nepi ka jangkungna
# Section for error strings
# "Out of order" is an humorous way to indicate that the service is not working
# properly.
requestErrorTitle = Béakeun.
requestErrorDetails = Hampura! Téwakan teu bisa diteundeun. Cobaan deui engké.
connectionErrorTitle = Teu bisa nyambung ka téwakan layar anjeun.
# Fired when someone makes a zero-width or zero-height selection
privateWindowErrorTitle = Téwakan layar ditumpurkeun Mode Langlangan Nyamuni
# Section for onboarding strings
Expand Down
2 changes: 2 additions & 0 deletions server/src/pages/metrics/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ const queries = {
SELECT
(SELECT COUNT(devices.id) FROM devices) AS total_devices,
(SELECT COUNT(data.id) FROM data WHERE NOT deleted AND expire_time < CURRENT_TIMESTAMP) AS active_shots,
(SELECT COUNT(data.id) FROM data WHERE NOT deleted AND expire_time IS NULL) AS forever_shots,
(SELECT COUNT(data.id) FROM data WHERE NOT deleted AND expire_time >= CURRENT_TIMESTAMP) AS expired_recoverable_shots,
(SELECT COUNT(data.id) FROM data WHERE deleted) AS expired_deleted_shots;
`,
columns: [
{title: "Total devices registered", name: "total_devices"},
{title: "Active shots", name: "active_shots"},
{title: "Never expiring shots", name: "forever_shots"},
{title: "Expired (recoverable)", name: "expired_recoverable_shots"},
{title: "... (deleted)", name: "expired_deleted_shots"},
],
Expand Down

0 comments on commit 0318782

Please # to comment.