You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add welcome survey to Welcome screen
Introduces a new Compose-based survey component to the Welcome screen via WelcomeSurvey.kt. Refactors Welcome.java to include the survey, and updates PDEButton in WelcomeToBeta.kt to support a modifier and proper content color handling.
* Make survey card clickable and remove button
Replaces the separate 'Take Survey' button with a clickable survey card that opens the survey URL. Adds pointer hover icon for better UX and updates the survey message text.
* Localize welcome survey text and fix resource paths
Added localized strings for the welcome survey title and description in PDE.properties. Updated WelcomeSurvey.kt to use these localized strings. Fixed resource loading paths in Locale.kt to correctly reference the 'languages' directory.
* Add welcome survey translations to language files
Introduced 'welcome.survey.title' and 'welcome.survey.description' keys to multiple language property files, providing localized text for the community survey prompt in Arabic, German, French, Italian, Japanese, Dutch, and Chinese. This improves internationalization support for the welcome survey feature.
Copy file name to clipboardExpand all lines: app/src/main/resources/languages/PDE.properties
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -633,6 +633,9 @@ beta.window.title = Welcome to Beta
633
633
beta.title = Thanks for testing this Processing Beta!
634
634
beta.message = This preview release lets us gather feedback and fix issues before the final version. **Some features may not work as expected.** If you encounter problems, [please post on the forum](https://discourse.processing.org) or [open a GitHub issue](https://github.com/processing/processing4/issues).
635
635
beta.button = Ok
636
+
# Welcome
637
+
welcome.survey.title=Take the Community Survey
638
+
welcome.survey.description=Processing is free, open-source, and shaped by its community. Your answers help us focus on what matters most.
Copy file name to clipboardExpand all lines: app/src/main/resources/languages/PDE_de.properties
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -420,6 +420,10 @@ update_check = Update
420
420
update_check.updates_available.core = Eine neue Version von Processing ist verfügbar,\nsoll der Download-Bereich aufgerufen werden?
421
421
update_check.updates_available.contributions = Es sind neue Updates von installierten Paketen verfügbar,\nsoll der Contribution Manager geöffnet werden?
422
422
423
+
# ---------------------------------------
424
+
# Welcome
425
+
welcome.survey.title=Nimm an der Community-Umfrage teil (auf Englisch)
426
+
welcome.survey.description=Processing ist kostenlos, open source und von seiner Community geprägt. Deine Antworten helfen uns, die wichtigsten Schwerpunkte zu setzen.
Copy file name to clipboardExpand all lines: app/src/main/resources/languages/PDE_fr.properties
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -502,6 +502,9 @@ update_check = Mise à jour
502
502
update_check.updates_available.core = Une nouvelle version de Processing est disponible, \nVoulez-vous visiter la page de téléchargement de Processing?
503
503
update_check.updates_available.contributions = Il y a des mises à jour disponibles pour certaines des contributions installées, \nVoulez-vous ouvrir le gestionnaire de contributions?
504
504
505
+
# Welcome
506
+
welcome.survey.title=Participez au sondage de la communauté (en anglais)
507
+
welcome.survey.description=Processing est gratuit, open source et façonné par sa communauté. Vos réponses nous aident à nous concentrer sur ce qui compte le plus.
Copy file name to clipboardExpand all lines: app/src/main/resources/languages/PDE_it.properties
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -546,6 +546,11 @@ update_check = Aggiorna
546
546
update_check.updates_available.core = Una nuova versione di Processing è disponibile,\nvuoi visitare la pagina di download del sito di Processing?
547
547
update_check.updates_available.contributions = Ci sono aggiornamenti disponibili per alcuni dei contributi installati,\nvorresti aprire il gestore dei contributi ora?
548
548
549
+
# ---------------------------------------
550
+
# Welcome
551
+
welcome.survey.title=Partecipa al sondaggio della community (in inglese)
552
+
welcome.survey.description=Processing è gratuito, open-source e plasmato dalla sua community. Le tue risposte ci aiutano a capire ciò che conta di più.
update_check.updates_available.contributions = There are updates available for some of the installed contributions,\nwould you like to open the the Contribution Manager now?
Copy file name to clipboardExpand all lines: app/src/main/resources/languages/PDE_nl.properties
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -315,6 +315,11 @@ update_check = Update
315
315
update_check.updates_available.core = Een nieuwe versie van Processing is beschikbaar,\nwilt u de Processing download pagina bezoeken?
316
316
update_check.updates_available.contributions = Er zijn updates beschikbaar voor sommige van de door u geïnstalleerde bijdragen,\nwilt u nu de Bijdragen Manager openen?
317
317
318
+
# ---------------------------------------
319
+
# Welcome
320
+
welcome.survey.title=Doe mee aan de community-enquête (in het Engels)
321
+
welcome.survey.description=Processing is gratis, open-source en gevormd door de community. Jouw antwoorden helpen ons te focussen op wat het belangrijkst is.
0 commit comments